﻿<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title>Quomon.com questions related to: .net</title>
    <link>http://quomon.com/BrowseQuestions.aspx</link>
    <description>Questions and Answers for IT &amp;amp; Graphic Design Professionals. Selection criteria -  Categories: .net - No keywords</description>
    <language>English</language>
    <copyright>Quomon</copyright>
    <generator />
    <webMaster>admin@quomon.com</webMaster>
    <lastBuildDate>Fri, 10 Sep 2010 17:37:01 GMT</lastBuildDate>
    <ttl>20</ttl>
    <item>
      <guid>http://quomon.com/question_I-pass-USER-defined-type-Type-table-based-record-Type-Oracle-API-Net_13527.aspx</guid>
      <title>I need to pass USER defined type (Type table based on a record Type) to Oracle API using .Net</title>
      <link>http://quomon.com/question_I-pass-USER-defined-type-Type-table-based-record-Type-Oracle-API-Net_13527.aspx</link>
      <description>Hi,&lt;br&gt;&lt;br&gt;I have a requirement where I need to pass values to a Oracle user defined type TABLE from .NET.&lt;br&gt;&lt;br&gt;Here is what I have ....&lt;br&gt;&lt;br&gt;Oracle type&lt;br&gt;--type describes adress object&lt;br&gt;TYPE t_address IS RECORD(&lt;br&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;addressline1 company.address_line_1%TYPE,&lt;br&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;addressline2 company.address_line_2%TYPE,&lt;br&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;addressline3 company.address_line_3%TYPE,&lt;br&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;addressline4 company.address_line_4%TYPE,&lt;br&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;postalcode   company.postcode%TYPE,&lt;br&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;countrycode  company.country_code%TYPE);&lt;br&gt;--table of adresses&lt;br&gt;TYPE t_addresses IS TABLE OF t_address;&lt;br&gt;&lt;br&gt;Here is the signature of Oracle API (Part of Oracle Package)&lt;br&gt;&lt;br&gt;PROCEDURE create_distributor(&lt;br&gt;i_broadcaster_ref_usage IN broadcaster_reference.reference_usage%TYPE DEFAULT g_broadcaster_ref_usage,&lt;br&gt;i_company_key           IN broadcaster_reference.broadcaster_reference%TYPE,&lt;br&gt;i_name                  IN company.company_name%TYPE,&lt;br&gt;i_addresses             IN t_addresses,  -- This is where i pass the Oracle Type&lt;br&gt;i_contact_first_name    IN contact.contact_first_name%TYPE,&lt;br&gt;i_contact_last_name     IN contact.contact_last_name%TYPE,&lt;br&gt;i_company_type          in company.company_type%type default 'D',&lt;br&gt;i_station_id            in station.station_id%type default 0,&lt;br&gt;o_company_key           out company.company_id%type,&lt;br&gt;o_response_cursor       OUT SYS_REFCURSOR) IS&lt;br&gt;&lt;br&gt;&lt;br&gt;In .Net I tried it this way&lt;br&gt;&lt;br&gt;&lt;br&gt;Int32 companykey = 0;&lt;br&gt;            t_response.CollectionType = OracleCollectionType.PLSQLAssociativeArray;&lt;br&gt;            t_address.CollectionType = OracleCollectionType.PLSQLAssociativeArray;&lt;br&gt;&lt;br&gt;            string spName = &amp;quot;ACQUISITIONS_API.CREATE_DISTRIBUTOR&amp;quot;;&lt;br&gt;            DbCommand cmd;&lt;br&gt;&lt;br&gt;            OracleParameter addresses = new OracleParameter();&lt;br&gt;            addresses.OracleDbType = OracleDbType.Varchar2;&lt;br&gt;            // set the collection type for each parameter&lt;br&gt;            addresses.CollectionType = OracleCollectionType.PLSQLAssociativeArray;&lt;br&gt;            addresses.Value = new string[6] { dist.address.addressLine1, &lt;br&gt;                                              dist.address.addressLine2,&lt;br&gt;                                              dist.address.addressLine3,&lt;br&gt;                                              dist.address.addressLine4,&lt;br&gt;                                              dist.address.postalCode,&lt;br&gt;                                              dist.address.countryCode&lt;br&gt;                                            };&lt;br&gt;            // set the size for each array&lt;br&gt;            addresses.Size = 6;&lt;br&gt;            &lt;br&gt;            try&lt;br&gt;            {&lt;br&gt;                //t_address = dist.address;&lt;br&gt;                cmd = database.GetStoredProcCommand(spName);&lt;br&gt;                cmd.Parameters[&amp;quot;I_BROADCASTER_REF_USAGE&amp;quot;].Value = &amp;quot;PDS&amp;quot;;&lt;br&gt;                cmd.Parameters[&amp;quot;I_COMPANY_KEY&amp;quot;].Value = dist.companyKey;&lt;br&gt;                cmd.Parameters[&amp;quot;I_NAME&amp;quot;].Value = dist.name;&lt;br&gt;                //cmd.Parameters.add(addresses);&lt;br&gt;                cmd.Parameters[&amp;quot;I_ADDRESSES&amp;quot;].Value = addresses;&lt;br&gt;                cmd.Parameters[&amp;quot;I_CONTACT_FIRST_NAME&amp;quot;].Value = dist.contactFirstName;&lt;br&gt;                cmd.Parameters[&amp;quot;I_CONTACT_LAST_NAME&amp;quot;].Value = dist.contactLastName;                &lt;br&gt;                cmd.Parameters[&amp;quot;I_COMPANY_TYPE&amp;quot;].Value = &amp;quot;D&amp;quot;;&lt;br&gt;                cmd.Parameters[&amp;quot;I_STATION_ID&amp;quot;].Value = &amp;quot;0&amp;quot;;&lt;br&gt;&lt;br&gt;                database.LoadDataSet(cmd, resultDataSet, new string[] { &amp;quot;Result&amp;quot; });&lt;br&gt;&lt;br&gt;                if ((cmd.Parameters[&amp;quot;O_RESPONSE_CURSOR&amp;quot;].Value != null))    &lt;br&gt;                {&lt;br&gt;                    return resultDataSet.GetXml().ToString();&lt;br&gt;                }&lt;br&gt;            }&lt;br&gt;            catch (OracleException ex)&lt;br&gt;            {&lt;br&gt;                throw RaiseException(&amp;quot;web.pilatmedia.com&amp;quot;, &amp;quot;ProgramAPI&amp;quot;, ex.Message, ex.Number.ToString(), &amp;quot;SampleWithCustomException()&amp;quot;, FaultCode.Server);&lt;br&gt;            }&lt;br&gt;&lt;br&gt;&lt;br&gt;I'm getting following error&lt;br&gt;&lt;br&gt;System.Web.Services.Protocols.SoapException: Server was unable to process request. ---&amp;gt; System.InvalidOperationException: OracleParameter.Value is invalid&lt;br&gt;   at Oracle.DataAccess.Client.OracleParameter.ResetCtx(Int32 arraySize)&lt;br&gt;   at Oracle.DataAccess.Client.OracleParameter.PreBind(OracleConnection conn, IntPtr errCtx, Int32 arraySize)&lt;br&gt;   at Oracle.DataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, Boolean fillRequest, CommandBehavior behavior)&lt;br&gt;   at Oracle.DataAccess.Client.OracleDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)&lt;br&gt;   at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet)&lt;br&gt;   at Pilat.Data.Oracle.PilatDatabase.DoLoadDataSetCore(DbCommand command, DataSet dataSet, String[] tableNames)&lt;br&gt;   at Pilat.Data.Oracle.PilatDatabase.DoLoadDataSet(DbCommand command, DataSet dataSet, String[] tableNames)&lt;br&gt;   at Pilat.Data.Oracle.PilatDatabase.LoadDataSet(DbCommand command, DataSet dataSet, String[] tableNames)&lt;br&gt;   at DiscoveryWebService.Service2.createDistributor(Distributor dist)&lt;br&gt;   --- End of inner exception stack trace ---&lt;br&gt;&lt;br&gt;&lt;br&gt;Can you please help me with this?&lt;br&gt;I'm not sure whether this is the correct way of mapping Oracle user defined types.&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;</description>
      <author>purnacm</author>
      <pubDate>Sun, 16 May 2010 07:24:49 GMT</pubDate>
      <comments>http://quomon.com/question_I-pass-USER-defined-type-Type-table-based-record-Type-Oracle-API-Net_13527.aspx#comments</comments>
      <category>.net, C# and Oracle</category>
    </item>
    <item>
      <guid>http://quomon.com/question_ISO-8583-Parser_13396.aspx</guid>
      <title>ISO 8583 Parser</title>
      <link>http://quomon.com/question_ISO-8583-Parser_13396.aspx</link>
      <description>Hi,&lt;br&gt;&lt;br&gt;I'm building an application to parse ISO 8583 messages (version 1993), do you have available tool that can help me to deliver my project in fastest option? I'm using C# in .Net Framework 2.0.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;techguy</description>
      <author>techguy0727</author>
      <pubDate>Thu, 06 May 2010 05:13:48 GMT</pubDate>
      <comments>http://quomon.com/question_ISO-8583-Parser_13396.aspx#comments</comments>
      <category>.net, application, option, ISO 8583</category>
    </item>
    <item>
      <guid>http://quomon.com/question_what-init-event-net_12700.aspx</guid>
      <title>what will do init event i .net</title>
      <link>http://quomon.com/question_what-init-event-net_12700.aspx</link>
      <description>what will do init event in .net</description>
      <author>habeebcse07</author>
      <pubDate>Thu, 04 Mar 2010 08:41:12 GMT</pubDate>
      <comments>http://quomon.com/question_what-init-event-net_12700.aspx#comments</comments>
      <category>.net, event</category>
    </item>
    <item>
      <guid>http://quomon.com/question_Anybody-experience-Facebook-connect_11123.aspx</guid>
      <title>Anybody has experience with Facebook connect?</title>
      <link>http://quomon.com/question_Anybody-experience-Facebook-connect_11123.aspx</link>
      <description>I'm just wondering how easy it is to integrate with an asp.net website and how you manage the users that come from Facebook, since they don't give you neither password or real email.</description>
      <author>SwingKing</author>
      <pubDate>Sun, 01 Nov 2009 15:05:39 GMT</pubDate>
      <comments>http://quomon.com/question_Anybody-experience-Facebook-connect_11123.aspx#comments</comments>
      <category>Websites, asp, email, password, facebook, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_how-application-start-automatically-windows-starts_9442.aspx</guid>
      <title>how can i get my application to start up automatically when windows starts?</title>
      <link>http://quomon.com/question_how-application-start-automatically-windows-starts_9442.aspx</link>
      <description>I'm developing a .net application that needs to start up when windows is started.&lt;br&gt;How can I accomplish that?</description>
      <author>dustPuppy</author>
      <pubDate>Tue, 19 May 2009 14:10:15 GMT</pubDate>
      <comments>http://quomon.com/question_how-application-start-automatically-windows-starts_9442.aspx#comments</comments>
      <category>windows, .net, application, startup</category>
    </item>
    <item>
      <guid>http://quomon.com/question_I-integrate-virus-scanner-net-application-How-I-that_9441.aspx</guid>
      <title>I need to integrate a virus scanner into my .net application. How do I do that?</title>
      <link>http://quomon.com/question_I-integrate-virus-scanner-net-application-How-I-that_9441.aspx</link>
      <description>Hi,&lt;br&gt;&lt;br&gt;I need to let people upload files to my asp.net website and afterwards scan them with an antivirus scanner. I was wondering if I need some special license for that or most antivirus products come with a command line tool that I could call through the website?&lt;br&gt;If you have any concrete experience, I would also love to hear about it.&lt;br&gt;&lt;br&gt;Thanks in advance.</description>
      <author>theDude</author>
      <pubDate>Tue, 19 May 2009 10:44:52 GMT</pubDate>
      <comments>http://quomon.com/question_I-integrate-virus-scanner-net-application-How-I-that_9441.aspx#comments</comments>
      <category>Websites, files, antivirus, virus, excel, .net, programming</category>
    </item>
    <item>
      <guid>http://quomon.com/question_setting-read-write-permissions-windows-user-programatically-net_7813.aspx</guid>
      <title>setting read/write permissions for a windows user programatically in c# .net?</title>
      <link>http://quomon.com/question_setting-read-write-permissions-windows-user-programatically-net_7813.aspx</link>
      <description>Hi guys,&lt;br&gt;&lt;br&gt;I need to give a specific windows user writing permissions to a particular folder.&lt;br&gt;I'm developing in C#.net.&lt;br&gt;How do I go about that?&lt;br&gt;&lt;br&gt;thanks in advance...</description>
      <author>dustPuppy</author>
      <pubDate>Wed, 18 Mar 2009 10:01:15 GMT</pubDate>
      <comments>http://quomon.com/question_setting-read-write-permissions-windows-user-programatically-net_7813.aspx#comments</comments>
      <category>windows, .net, C#, permissions</category>
    </item>
    <item>
      <guid>http://quomon.com/question_How-I-copy-folder-folder-net_7799.aspx</guid>
      <title>How do I copy everything within a folder to another folder using c#.net?</title>
      <link>http://quomon.com/question_How-I-copy-folder-folder-net_7799.aspx</link>
      <description>I need to copy all files, folders etc. within a specific folder to another folder.&lt;br&gt;How do I accomplish this with C# in .net?&lt;br&gt;I was trying to use the Directory class, but can't see any method for this purpose.&lt;br&gt;&lt;br&gt;I'm using .net 2.0&lt;br&gt;&lt;br&gt;Hope you can help...</description>
      <author>dave</author>
      <pubDate>Tue, 17 Mar 2009 08:12:59 GMT</pubDate>
      <comments>http://quomon.com/question_How-I-copy-folder-folder-net_7799.aspx#comments</comments>
      <category>copy, files, .net, C#, programming</category>
    </item>
    <item>
      <guid>http://quomon.com/question_how-create-windows-taskbar-notifications-net_7650.aspx</guid>
      <title>how do i create windows taskbar notifications in .net?</title>
      <link>http://quomon.com/question_how-create-windows-taskbar-notifications-net_7650.aspx</link>
      <description>Hi,&lt;br&gt;&lt;br&gt;I need to create a windows application that can popup these small notifications on the lower right of the desktop where the icons are. As far as I can see they're called taskbar notifications, but I don't know how to show a notification there in .net with C#.&lt;br&gt;&lt;br&gt;Can you help me out?</description>
      <author>Anpanman</author>
      <pubDate>Wed, 11 Mar 2009 12:22:59 GMT</pubDate>
      <comments>http://quomon.com/question_how-create-windows-taskbar-notifications-net_7650.aspx#comments</comments>
      <category>windows, notifications, .net, C#, taskbar, windows application</category>
    </item>
    <item>
      <guid>http://quomon.com/question_how-export-gridview-data-Excel_7576.aspx</guid>
      <title>how to export gridview data's into Excel?</title>
      <link>http://quomon.com/question_how-export-gridview-data-Excel_7576.aspx</link>
      <description>i want to export gridview data's into excel using asp.net with c#</description>
      <author>priyaravi2008</author>
      <pubDate>Tue, 10 Mar 2009 01:30:50 GMT</pubDate>
      <comments>http://quomon.com/question_how-export-gridview-data-Excel_7576.aspx#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_i-insert-bulk-records-table-you_7500.aspx</guid>
      <title>i want to insert bulk of records into table?thank you</title>
      <link>http://quomon.com/question_i-insert-bulk-records-table-you_7500.aspx</link>
      <description>I want to  insert 10 records based on some condition</description>
      <author>priyaravi2008</author>
      <pubDate>Fri, 06 Mar 2009 23:02:34 GMT</pubDate>
      <comments>http://quomon.com/question_i-insert-bulk-records-table-you_7500.aspx#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_sending-email-net-string-form-required-subject_7326.aspx</guid>
      <title>sending an email in .net: the specified string is not in the form required for a subject?</title>
      <link>http://quomon.com/question_sending-email-net-string-form-required-subject_7326.aspx</link>
      <description>I'm getting this error when trying to send out an email with .net 2.0:&lt;br&gt;&lt;br&gt;the specified string is not in the form required for a subject&lt;br&gt;&lt;br&gt;Do you know what could be wrong?</description>
      <author>dustPuppy</author>
      <pubDate>Wed, 04 Mar 2009 11:38:17 GMT</pubDate>
      <comments>http://quomon.com/question_sending-email-net-string-form-required-subject_7326.aspx#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_intermittent-web-config-error-Could-create-Windows-user-token-credentials-specified_6763.aspx</guid>
      <title>intermittent web.config error: Could not create Windows user token from the credentials specified</title>
      <link>http://quomon.com/question_intermittent-web-config-error-Could-create-Windows-user-token-credentials-specified_6763.aspx</link>
      <description>Once in a while I get this error on my asp.net site:&lt;br&gt;Could not create Windows user token from the credentials specified in the config file&lt;br&gt;&lt;br&gt;Do you have any idea what it could be?</description>
      <author>Anpanman</author>
      <pubDate>Mon, 12 Jan 2009 07:39:43 GMT</pubDate>
      <comments>http://quomon.com/question_intermittent-web-config-error-Could-create-Windows-user-token-credentials-specified_6763.aspx#comments</comments>
      <category>.net, web.config</category>
    </item>
    <item>
      <guid>http://quomon.com/question_How-Save-info-datagridview-textbox-sql-2000-databse_6592.aspx</guid>
      <title>How do Save info from datagridview and textbox in sql 2000 databse</title>
      <link>http://quomon.com/question_How-Save-info-datagridview-textbox-sql-2000-databse_6592.aspx</link>
      <description>My form has one(1) datagridview and 7 textboxes and i need to save info. from the datagridview as well as textboxes into the database. Pls help</description>
      <author>decklonarankk</author>
      <pubDate>Sat, 06 Dec 2008 11:08:42 GMT</pubDate>
      <comments>http://quomon.com/question_How-Save-info-datagridview-textbox-sql-2000-databse_6592.aspx#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_how-open-file-dialog-net-windows-application_6509.aspx</guid>
      <title>how do i open a file dialog in .net (a windows application)?</title>
      <link>http://quomon.com/question_how-open-file-dialog-net-windows-application_6509.aspx</link>
      <description>Hi,&lt;br&gt;I need to open a file dialog in a windows application for the user to choose a path to export a file to.&lt;br&gt;How do I do that? The FileDialog class is abstract...&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;dust</description>
      <author>dustPuppy</author>
      <pubDate>Tue, 18 Nov 2008 05:46:32 GMT</pubDate>
      <comments>http://quomon.com/question_how-open-file-dialog-net-windows-application_6509.aspx#comments</comments>
      <category>.net, C#, files, windows, Software, Development</category>
    </item>
    <item>
      <guid>http://quomon.com/question_How-I-local-server-ip-adress-asp-net_6455.aspx</guid>
      <title>How do I get the local server ip adress in asp.net?</title>
      <link>http://quomon.com/question_How-I-local-server-ip-adress-asp-net_6455.aspx</link>
      <description>I need to know the ip address of the server the application is running on. How do I get that in asp.net (c#)?</description>
      <author>dustPuppy</author>
      <pubDate>Thu, 06 Nov 2008 04:47:47 GMT</pubDate>
      <comments>http://quomon.com/question_How-I-local-server-ip-adress-asp-net_6455.aspx#comments</comments>
      <category>.net, C#, ip address</category>
    </item>
    <item>
      <guid>http://quomon.com/question_What-good-source-profanity-filter-takes-possibilities-account_6436.aspx</guid>
      <title>What is a good source for a profanity filter that takes all possibilities into account?</title>
      <link>http://quomon.com/question_What-good-source-profanity-filter-takes-possibilities-account_6436.aspx</link>
      <description>I am looking for a script (preferably .Net) that will take all possible profanity instances into account that I can drop into my website.</description>
      <author>mary2</author>
      <pubDate>Fri, 31 Oct 2008 05:13:02 GMT</pubDate>
      <comments>http://quomon.com/question_What-good-source-profanity-filter-takes-possibilities-account_6436.aspx#comments</comments>
      <category>Profanity, Filters, Profanity Filters, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_Dynamically-I-created-ASP-NET-user-control-ASP-NET-Ajax-Web-Service_6337.aspx</guid>
      <title>Dynamically I created ASP.NET user control using ASP.NET Ajax and Web Service </title>
      <link>http://quomon.com/question_Dynamically-I-created-ASP-NET-user-control-ASP-NET-Ajax-Web-Service_6337.aspx</link>
      <description>Dynamically I created ASP.NET user control using ASP.NET Ajax and Web Service&lt;br&gt;&lt;br&gt;but I got an error on onclick of the asp button&lt;br&gt;&lt;br&gt;Error:&lt;br&gt;&lt;br&gt;The state information is invalid for this page and might be corrupted. &lt;br&gt;Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. &lt;br&gt;&lt;br&gt;Exception Details: System.Web.HttpException: The state information is invalid for this page and might be corrupted.&lt;br&gt;&lt;br&gt;Please Reply if u found solution for this</description>
      <author>kalpana</author>
      <pubDate>Wed, 15 Oct 2008 10:07:23 GMT</pubDate>
      <comments>http://quomon.com/question_Dynamically-I-created-ASP-NET-user-control-ASP-NET-Ajax-Web-Service_6337.aspx#comments</comments>
      <category>.net, C#</category>
    </item>
    <item>
      <guid>http://quomon.com/question_Using-web-part-web-server-possible_6322.aspx</guid>
      <title>Using web part in web server is not possible</title>
      <link>http://quomon.com/question_Using-web-part-web-server-possible_6322.aspx</link>
      <description>i am new to .net i am trying implementing webparts it is working in local server but i can not able to publish the website while using webparts</description>
      <author>vijayakumar</author>
      <pubDate>Tue, 14 Oct 2008 06:42:22 GMT</pubDate>
      <comments>http://quomon.com/question_Using-web-part-web-server-possible_6322.aspx#comments</comments>
      <category>.net, C#</category>
    </item>
    <item>
      <guid>http://quomon.com/question_regular-expressions-tester-net-c_6263.aspx</guid>
      <title>regular expressions tester for .net - c#?</title>
      <link>http://quomon.com/question_regular-expressions-tester-net-c_6263.aspx</link>
      <description>Hey guys,&lt;br&gt;&lt;br&gt;I'm looking for some program or online page to be able to test my regular expressions easily since they're so complicated to create and debug.&lt;br&gt;Do you know of any tool or website that has this?&lt;br&gt;&lt;br&gt;thanks,&lt;br&gt;dustPuppy</description>
      <author>dustPuppy</author>
      <pubDate>Fri, 03 Oct 2008 04:53:08 GMT</pubDate>
      <comments>http://quomon.com/question_regular-expressions-tester-net-c_6263.aspx#comments</comments>
      <category>testing, regular expressions, C#, .net, regex</category>
    </item>
    <item>
      <guid>http://quomon.com/question_i-forgotten-yahoo-security-answer-reset-password-pls-urgent_6190.aspx</guid>
      <title>i have forgotten my yahoo security answer.. anyways to reset password? pls let me know its urgent!!</title>
      <link>http://quomon.com/question_i-forgotten-yahoo-security-answer-reset-password-pls-urgent_6190.aspx</link>
      <description>its my old email... now it seems i have got an imp mail there... n i have forgotten the password... when i tried to reset password, i could give my birthdate n zip but i dont remember my security answer... is there anyways to get my mails from there or to reset password??? </description>
      <author>naveedbb073084</author>
      <pubDate>Thu, 25 Sep 2008 06:22:19 GMT</pubDate>
      <comments>http://quomon.com/question_i-forgotten-yahoo-security-answer-reset-password-pls-urgent_6190.aspx#comments</comments>
      <category>information technology, Websites, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_add-wireless-print-copy-machine-laptop_6170.aspx</guid>
      <title>add a wireless print/copy machine to my laptop</title>
      <link>http://quomon.com/question_add-wireless-print-copy-machine-laptop_6170.aspx</link>
      <description>I am trying to get my personal laptop to print to a copy/ printer machine here at my work. I have no idea how to get it even started. I have seen it done before where people send things to a certain printer not even connected to their computer. Could someone please help me out??</description>
      <author>amberjane56</author>
      <pubDate>Tue, 23 Sep 2008 15:59:17 GMT</pubDate>
      <comments>http://quomon.com/question_add-wireless-print-copy-machine-laptop_6170.aspx#comments</comments>
      <category>HTML, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_how-call-function-aspx-cs-ascx-cs_6066.aspx</guid>
      <title>how to call function in .aspx.cs from ascx.cs</title>
      <link>http://quomon.com/question_how-call-function-aspx-cs-ascx-cs_6066.aspx</link>
      <description>i have function in .ascx.cs i want to use this function in page.aspx&lt;br&gt;thank u</description>
      <author>ajapprog</author>
      <pubDate>Thu, 04 Sep 2008 07:53:22 GMT</pubDate>
      <comments>http://quomon.com/question_how-call-function-aspx-cs-ascx-cs_6066.aspx#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_my-moniter-blasting-connect-pc_5987.aspx</guid>
      <title>my moniter is blasting when connect to pc</title>
      <link>http://quomon.com/question_my-moniter-blasting-connect-pc_5987.aspx</link>
      <description>actually here in our area there is very load shading for that purpose this problem is create</description>
      <author>ali03214372750</author>
      <pubDate>Thu, 21 Aug 2008 01:52:34 GMT</pubDate>
      <comments>http://quomon.com/question_my-moniter-blasting-connect-pc_5987.aspx#comments</comments>
      <category>koieka, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_how-read-contents-filepath-passed-run-time_5959.aspx</guid>
      <title>how to read the contents of filepath passed at run time</title>
      <link>http://quomon.com/question_how-read-contents-filepath-passed-run-time_5959.aspx</link>
      <description>i want to read the resume contents of the corresponding filepath that is uploaded at runtime? say</description>
      <author>dineshkumarmani</author>
      <pubDate>Mon, 11 Aug 2008 22:57:40 GMT</pubDate>
      <comments>http://quomon.com/question_how-read-contents-filepath-passed-run-time_5959.aspx#comments</comments>
      <category>.net, C#, Databases, web development, Websites, JavaScript, windows xp</category>
    </item>
    <item>
      <guid>http://quomon.com/question_slow-asp-net-site-render-method-takes-forever_5946.aspx</guid>
      <title>slow asp.net site, render method takes forever</title>
      <link>http://quomon.com/question_slow-asp-net-site-render-method-takes-forever_5946.aspx</link>
      <description>I have a strange problem with a website I'm developing in asp.net (C#).&lt;br&gt;Basically when uploaded to the server, the render method suddenly takes 15 sec. to execute, but not on all the pages. I'm not overloading the method, so it's pure standard asp.net rendering and i've never experienced something like this before.&lt;br&gt;Do you have any idea about what it could be?</description>
      <author>dustPuppy</author>
      <pubDate>Sat, 09 Aug 2008 12:38:04 GMT</pubDate>
      <comments>http://quomon.com/question_slow-asp-net-site-render-method-takes-forever_5946.aspx#comments</comments>
      <category>Websites, .net, C#, web development</category>
    </item>
    <item>
      <guid>http://quomon.com/question_windows-service-file-format-exception_5915.aspx</guid>
      <title>windows service and file format exception.</title>
      <link>http://quomon.com/question_windows-service-file-format-exception_5915.aspx</link>
      <description>I have a windows service that reads the files in  directory on one server and loads them into another. So I' m using these lines of code to accomplish this. The problem is that I' m getting the format of the  path specified  is not the correct format. I' m not able to correct this all help would greatly be accomplished.&lt;br&gt;thanks&lt;br&gt;amulu&lt;br&gt; protected void CopyImage()&lt;br&gt;        {&lt;br&gt;        &lt;br&gt;                &lt;br&gt;&lt;br&gt;            &lt;br&gt;&lt;br&gt;    &lt;br&gt;            // DAImage da = new DAImage();&lt;br&gt;            string stylenum = &amp;quot;&amp;quot;;&lt;br&gt;            int itemid = 0;&lt;br&gt;            stylenum = &amp;quot;200899-01&amp;quot;;&lt;br&gt;            string filenum = &amp;quot;&amp;quot;;&lt;br&gt;            string newfilename = Guid.NewGuid().ToString () ;&lt;br&gt;            int index = 0;&lt;br&gt;            try&lt;br&gt;            {&lt;br&gt;&lt;br&gt;                string[] files = System.IO.Directory.GetFiles((&amp;quot;\\\\Ccsrv2\\publicfiles\\All\\MARKETING\\Pr&lt;br&gt;oduct Images\\Style Images\\August 2008 Market\\Test&amp;quot;));&lt;br&gt;                //(@&amp;quot;C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder&amp;quot;);&lt;br&gt;&lt;br&gt;&lt;br&gt;                foreach (string file in files)&lt;br&gt;                {&lt;br&gt;                    index = file.IndexOf(&amp;quot;.&amp;quot;);&lt;br&gt;                    filenum = file.Remove(index, 3);&lt;br&gt;                    index = file.Length;&lt;br&gt;                    filenum = file.Replace(&amp;quot;\\&amp;quot;, &amp;quot;&amp;quot;);&lt;br&gt;                    index = filenum.Length;&lt;br&gt;&lt;br&gt;                    filenum = filenum.Substring(index - 13, 9);&lt;br&gt;&lt;br&gt;                    //filenum=file.Remove(index);&lt;br&gt;                    //Response.Write(filenum);&lt;br&gt;                    DataTable dtitem = DAImage.GetItembyStylenum(filenum);&lt;br&gt;                    foreach (DataRow dr in dtitem.Rows)&lt;br&gt;                    {&lt;br&gt;                        stylenum = (dr[0].ToString());&lt;br&gt;                        itemid = Convert.ToInt16(dr[1].ToString());&lt;br&gt;                    }&lt;br&gt;&lt;br&gt;&lt;br&gt;                    if (filenum == stylenum) // get the stylenum in the required format from the file here&lt;br&gt;                    {&lt;br&gt;                        //Get the image id for the image to be inserted into the table.&lt;br&gt;                        DataTable dt = DAImage.GetImageId();&lt;br&gt;                        string result = &amp;quot;&amp;quot;;&lt;br&gt;                        foreach (DataRow dr in dt.Rows)&lt;br&gt;                        {&lt;br&gt;                            result = dr[0].ToString();&lt;br&gt;                        }&lt;br&gt;&lt;br&gt;&lt;br&gt;                        // System.IO.Directory.CreateDirectory(@&amp;quot;C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder\\tbl&amp;quot; + itemid);&lt;br&gt;                        //System.IO.File.Copy(file, @&amp;quot;\\Pdserver.tsiag.com\d$\Library\tbl&amp;quot; + itemid + &amp;quot;\&amp;quot; + filenum + &amp;quot;.jpg&amp;quot;);&lt;br&gt;&lt;br&gt; &lt;br&gt;&lt;br&gt;                        System.IO.Directory.CreateDirectory(@&amp;quot;\\Pdserver\\d:$\\devlibrary\\tblItem&lt;br&gt;&amp;quot; + itemid);&lt;br&gt;                        // System.IO.File.Copy(file, @&amp;quot;C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder\\tbl&amp;quot; + itemid + &amp;quot;\\&amp;quot; + newfilename + &amp;quot;.jpg&amp;quot;);&lt;br&gt;                      //  System.IO.File.Copy(file, &amp;quot;\\\\Pdserver\\d$\\devlibrary\\tblItem&amp;quot; + itemid + &amp;quot;\\&amp;quot; + newfilename.ToString() + &amp;quot;.jpg&amp;quot;);&lt;br&gt;                        System.IO.File.Copy(file, @&amp;quot;\\Pdserver.tsiag.com\\d:$\\Library\\tbl&amp;quot; + itemid + &amp;quot;\\&amp;quot; + filenum + &amp;quot;.jpg&amp;quot;);&lt;br&gt;                        DAImage.InsertImage(&amp;quot;\\tblItem&amp;quot; + itemid + &amp;quot;\\&amp;quot; + newfilename.ToString() + &amp;quot;.jpg&amp;quot;, itemid);&lt;br&gt;                        System.IO.File.Delete(file);&lt;br&gt;                    }&lt;br&gt;                    //select  * from tblImage where imageid= (select max(imageid) from tblImage )&lt;br&gt;                    //Insert into the tblImage for that imageid and for that category.&lt;br&gt;                    //then delete this file from The j:/ directory.&lt;br&gt;&lt;br&gt;                }&lt;br&gt;            }&lt;br&gt;            catch (Exception ex)&lt;br&gt;            {&lt;br&gt;                throw ex;&lt;br&gt;            }&lt;br&gt;        }</description>
      <author>mythilimythili</author>
      <pubDate>Mon, 04 Aug 2008 13:10:26 GMT</pubDate>
      <comments>http://quomon.com/question_windows-service-file-format-exception_5915.aspx#comments</comments>
      <category>web development, windows xp, information technology, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_setup-creation_5769.aspx</guid>
      <title>setup creation</title>
      <link>http://quomon.com/question_setup-creation_5769.aspx</link>
      <description>hi dear can u explain me that can i make setup of web application as i can do in windows application in .net </description>
      <author>samesandy</author>
      <pubDate>Fri, 04 Jul 2008 03:30:46 GMT</pubDate>
      <comments>http://quomon.com/question_setup-creation_5769.aspx#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_I-COMException-The-SendUsing-configuration-invalid-send-email_5725.aspx</guid>
      <title>I get a COMException: The "SendUsing" configuration value is invalid when i try to send out email</title>
      <link>http://quomon.com/question_I-COMException-The-SendUsing-configuration-invalid-send-email_5725.aspx</link>
      <description>I'm developing in asp.net and i'm trying to send out an email.&lt;br&gt;Do you know that this message means?</description>
      <author>dave</author>
      <pubDate>Fri, 27 Jun 2008 09:16:21 GMT</pubDate>
      <comments>http://quomon.com/question_I-COMException-The-SendUsing-configuration-invalid-send-email_5725.aspx#comments</comments>
      <category>.net, C#, information technology, web development, Websites</category>
    </item>
    <item>
      <guid>http://quomon.com/question_how-set-asp-net-site-show-maintenance-page-offline_5722.aspx</guid>
      <title>how do i set my asp.net site to show a maintenance page, while it's offline?</title>
      <link>http://quomon.com/question_how-set-asp-net-site-show-maintenance-page-offline_5722.aspx</link>
      <description>is there any way to do this though the web.config file?</description>
      <author>dave</author>
      <pubDate>Thu, 26 Jun 2008 13:57:23 GMT</pubDate>
      <comments>http://quomon.com/question_how-set-asp-net-site-show-maintenance-page-offline_5722.aspx#comments</comments>
      <category>C#, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_hi-I-pankaj-Singh_5610.aspx</guid>
      <title>hi I am pankaj Singh</title>
      <link>http://quomon.com/question_hi-I-pankaj-Singh_5610.aspx</link>
      <description>Hi&lt;br&gt;   Mam I want to learn c#.net and web programming for u . I want a Help regarding programming&lt;br&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;br&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;Yours's&lt;br&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="margin-left: 10px"&gt;&amp;nbsp;&lt;/span&gt;Pankaj Kumar Singh</description>
      <author>pankajchampion82</author>
      <pubDate>Sun, 25 May 2008 03:59:17 GMT</pubDate>
      <comments>http://quomon.com/question_hi-I-pankaj-Singh_5610.aspx#comments</comments>
      <category>C#, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_what-main-difference-asp-asp-net_5536.aspx</guid>
      <title>what is the main difference between asp&amp;asp.net?</title>
      <link>http://quomon.com/question_what-main-difference-asp-asp-net_5536.aspx</link>
      <description>what is the main difference between asp&amp;amp;asp.net?</description>
      <author>suryahills</author>
      <pubDate>Sat, 03 May 2008 05:58:32 GMT</pubDate>
      <comments>http://quomon.com/question_what-main-difference-asp-asp-net_5536.aspx#comments</comments>
      <category>.net, information technology, web development</category>
    </item>
    <item>
      <guid>http://quomon.com/question_RETRIEVE-THE-PROPERTIES-OF-OBJECTS-IN-MSSQL-2005_5185.aspx</guid>
      <title>RETRIEVE THE PROPERTIES OF OBJECTS IN MSSQL 2005</title>
      <link>http://quomon.com/question_RETRIEVE-THE-PROPERTIES-OF-OBJECTS-IN-MSSQL-2005_5185.aspx</link>
      <description>I WANT TO GET THE PROPERTIES OF ALL THE SQL OBJECTS LIKE Backup Devices,Rule,Full Text Catalog,Full Text Services,Language ETC.. &lt;br&gt;HOW CAN I RETRIEVE IT USING SMO OR BY THE QUERY&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</description>
      <author>georgemathew2</author>
      <pubDate>Tue, 19 Feb 2008 13:01:01 GMT</pubDate>
      <comments>http://quomon.com/question_RETRIEVE-THE-PROPERTIES-OF-OBJECTS-IN-MSSQL-2005_5185.aspx#comments</comments>
      <category>Databases, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_about-socket-communication-Windows-service_5172.aspx</guid>
      <title>about socket communication in Windows service</title>
      <link>http://quomon.com/question_about-socket-communication-Windows-service_5172.aspx</link>
      <description>hi i am new  to .Net development. i need to develop an service which need to listen for incoming socket connection. i implemented this process in onstart event .. but it hangs for particular time whan the service starts and says &amp;quot;service could not be started&amp;quot;. please help how to make service to listen on the port please help.</description>
      <author>pvenkatesh2k4</author>
      <pubDate>Thu, 14 Feb 2008 03:20:31 GMT</pubDate>
      <comments>http://quomon.com/question_about-socket-communication-Windows-service_5172.aspx#comments</comments>
      <category>C#, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_about-creating-service-C_5112.aspx</guid>
      <title>about creating a service using C#</title>
      <link>http://quomon.com/question_about-creating-service-C_5112.aspx</link>
      <description>hai,&lt;br&gt;  i am new to .Net programming. Now i need to build an service which is to listen the receiving messages of SMS Gateway and perforam actions based on the incoming message. Lets say SMS Gateway software is running in some Port. How to do that.. Please give reference to that.&lt;br&gt;                 thank you</description>
      <author>pvenkatesh2k4</author>
      <pubDate>Tue, 29 Jan 2008 03:28:19 GMT</pubDate>
      <comments>http://quomon.com/question_about-creating-service-C_5112.aspx#comments</comments>
      <category>.net, C#</category>
    </item>
    <item>
      <guid>http://quomon.com/question_about-creating-service-C_5111.aspx</guid>
      <title>about creating a service using C#</title>
      <link>http://quomon.com/question_about-creating-service-C_5111.aspx</link>
      <description>hai to all&lt;br&gt;    i am new to .Net . i need to develop an service which is to listen the SMS Gateway software which is running in a specific port/IP Address. How to do that? Please help me. Is there any reference(link) to learn it? if so,Please specify it</description>
      <author>pvenkatesh2k4</author>
      <pubDate>Tue, 29 Jan 2008 03:13:14 GMT</pubDate>
      <comments>http://quomon.com/question_about-creating-service-C_5111.aspx#comments</comments>
      <category>C#, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_Remove-cookies_5051.aspx</guid>
      <title>Remove cookies </title>
      <link>http://quomon.com/question_Remove-cookies_5051.aspx</link>
      <description>my need is whenever i redirect to some page from hame page,i want delete home page cookies from client.... what can i do?&lt;br&gt;</description>
      <author>ravishiva1</author>
      <pubDate>Mon, 21 Jan 2008 23:03:14 GMT</pubDate>
      <comments>http://quomon.com/question_Remove-cookies_5051.aspx#comments</comments>
      <category>.net, C#</category>
    </item>
    <item>
      <guid>http://quomon.com/question_I-run-movie-divocodec-file-How-play-movie_4985.aspx</guid>
      <title>I want help to run a movie which needs a divocodec file,please help.How do i play the movie ?</title>
      <link>http://quomon.com/question_I-run-movie-divocodec-file-How-play-movie_4985.aspx</link>
      <description>I have recently downloaded a movie called 27 dresses which requires a divocodec file..i tried downloading dwconverter from wildmann productions but not working fine..i have downloaded divocodec though..please suggest as to how should i approach sovling this problem...its urgent.</description>
      <author>premash1906</author>
      <pubDate>Fri, 11 Jan 2008 07:22:45 GMT</pubDate>
      <comments>http://quomon.com/question_I-run-movie-divocodec-file-How-play-movie_4985.aspx#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_no-puedo-oir-musica_4881.aspx</guid>
      <title>no puedo oir musica</title>
      <link>http://quomon.com/question_no-puedo-oir-musica_4881.aspx</link>
      <description>como le puedo hacer para escuchar musica en linea&lt;br&gt;</description>
      <author>sandraisabeles</author>
      <pubDate>Wed, 02 Jan 2008 21:12:20 GMT</pubDate>
      <comments>http://quomon.com/question_no-puedo-oir-musica_4881.aspx#comments</comments>
      <category>internet, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_Please-Help-My-windows-service-permissions-problems-running-macro-Excel-spreadsheet_4532.aspx</guid>
      <title>Please Help!  My windows service has permissions problems running a macro in an Excel spreadsheet.</title>
      <link>http://quomon.com/question_Please-Help-My-windows-service-permissions-problems-running-macro-Excel-spreadsheet_4532.aspx</link>
      <description>I have a macro in an Excel spreadsheet that connects to an OPC server to retrieve data.  I works just fine when I run it manually, or when I run it programmatically from a standard windows program.  But when I try to do it from a service (running the same code as the standard windows program), it fails.  &lt;br&gt;&lt;br&gt;If I run the service from the Local System account, it opens the spreadsheet but completely loses track of the Excel object and cannot close it.  If I then check &amp;quot;Allow service to interact with Desktop&amp;quot;, it opens the spreadsheet and runs the macro, but the macro then doesn't have permission to access the OPC server.  If I run the service from the Administrator account, the service does nothing - no event log entries or anything.  Can someone PLEASE help me quickly with this?</description>
      <author>bakershack</author>
      <pubDate>Tue, 27 Nov 2007 12:48:14 GMT</pubDate>
      <comments>http://quomon.com/question_Please-Help-My-windows-service-permissions-problems-running-macro-Excel-spreadsheet_4532.aspx#comments</comments>
      <category>servers, .net, windows, windows xp</category>
    </item>
    <item>
      <guid>http://quomon.com/question_Custom-paging-control-asp-net-2_2984.aspx</guid>
      <title>Custom paging control for asp.net 2?</title>
      <link>http://quomon.com/question_Custom-paging-control-asp-net-2_2984.aspx</link>
      <description>I'm looking for a custom paging control for asp.net to use with a gridview. I understand the idea of how to create custom paging, but I was hoping to find an open source version that I only had to adapt instead of starting from scratch.&lt;br&gt;Do you guys know of any?</description>
      <author>dustPuppy</author>
      <pubDate>Thu, 02 Aug 2007 12:51:58 GMT</pubDate>
      <comments>http://quomon.com/question_Custom-paging-control-asp-net-2_2984.aspx#comments</comments>
      <category>.net, C#, information technology, internet, web development, Websites</category>
    </item>
    <item>
      <guid>http://quomon.com/question_how-verify-internet-connection-exists-windows-net-application_2933.aspx</guid>
      <title>how to verify that an internet connection exists from a windows .net application?</title>
      <link>http://quomon.com/question_how-verify-internet-connection-exists-windows-net-application_2933.aspx</link>
      <description>I need to verify in the user is connected to the internet.&lt;br&gt;What is the best, i.e. quickest way to do this?</description>
      <author>dustPuppy</author>
      <pubDate>Fri, 27 Jul 2007 10:56:52 GMT</pubDate>
      <comments>http://quomon.com/question_how-verify-internet-connection-exists-windows-net-application_2933.aspx#comments</comments>
      <category>windows, internet, .net, C#, information technology, software development</category>
    </item>
    <item>
      <guid>http://quomon.com/question_Can-I-create-masterpage-template-asp-net-usercontrols-well_2882.aspx</guid>
      <title>Can I create a masterpage template in asp.net for usercontrols as well?</title>
      <link>http://quomon.com/question_Can-I-create-masterpage-template-asp-net-usercontrols-well_2882.aspx</link>
      <description>I need to make a general template for a range of usercontrols that I use on a site that I'm developing.&lt;br&gt;I know that with the masterpage i can create the template for the whole site, but can it be used on a usercontrol level as well? or how do I make a template for usercontrols?</description>
      <author>dustPuppy</author>
      <pubDate>Thu, 19 Jul 2007 04:11:09 GMT</pubDate>
      <comments>http://quomon.com/question_Can-I-create-masterpage-template-asp-net-usercontrols-well_2882.aspx#comments</comments>
      <category>template, .net, C#, internet, information technology, Web Design, web development, Websites</category>
    </item>
    <item>
      <guid>http://quomon.com/question_how-create-windows-service-program_2824.aspx</guid>
      <title>how to create a windows service program?</title>
      <link>http://quomon.com/question_how-create-windows-service-program_2824.aspx</link>
      <description>I need to create a program that can be installed as a windows service, not as a normal desktop program.&lt;br&gt;I'm using .net and C#.&lt;br&gt;How do I do that?</description>
      <author>theDude</author>
      <pubDate>Fri, 13 Jul 2007 10:20:00 GMT</pubDate>
      <comments>http://quomon.com/question_how-create-windows-service-program_2824.aspx#comments</comments>
      <category>windows, C#, .net, windows service</category>
    </item>
    <item>
      <guid>http://quomon.com/question_Are-tools-convert-HTML-Flash_2800.aspx</guid>
      <title>Are there any tools to convert HTML to Flash</title>
      <link>http://quomon.com/question_Are-tools-convert-HTML-Flash_2800.aspx</link>
      <description>Looking for tool to convert HTML to Flash (dynamically via API)</description>
      <author>iti114</author>
      <pubDate>Tue, 10 Jul 2007 14:20:14 GMT</pubDate>
      <comments>http://quomon.com/question_Are-tools-convert-HTML-Flash_2800.aspx#comments</comments>
      <category>HTML, .net</category>
    </item>
    <item>
      <guid>http://quomon.com/question_From-windows-net-application-detect-application-running_2738.aspx</guid>
      <title>From a windows .net application is it possible to detect if the application is already running?</title>
      <link>http://quomon.com/question_From-windows-net-application-detect-application-running_2738.aspx</link>
      <description>I am developing a windows .net program (in c#) and I was wondering if it is possible to detect on startup if the program is already running, so that the user is not allowed to run two instances of it at once?&lt;br&gt;How is that done?</description>
      <author>theDude</author>
      <pubDate>Tue, 03 Jul 2007 13:06:24 GMT</pubDate>
      <comments>http://quomon.com/question_From-windows-net-application-detect-application-running_2738.aspx#comments</comments>
      <category>windows, .net, information technology, C#</category>
    </item>
    <item>
      <guid>http://quomon.com/question_How-I-create-text-file-UTF7-encoding-net_2406.aspx</guid>
      <title>How do I create a text file with UTF7 encoding in c# .net?</title>
      <link>http://quomon.com/question_How-I-create-text-file-UTF7-encoding-net_2406.aspx</link>
      <description>I need to create a text (.txt) file with UTF7 encoding (I think the default is UTF8).&lt;br&gt;I'm developing with c# .net.&lt;br&gt;How do I do that?</description>
      <author>dustPuppy</author>
      <pubDate>Wed, 20 Jun 2007 03:36:37 GMT</pubDate>
      <comments>http://quomon.com/question_How-I-create-text-file-UTF7-encoding-net_2406.aspx#comments</comments>
      <category>C#, .net, encoding, information technology</category>
    </item>
    <item>
      <guid>http://quomon.com/question_javascript-work-Firefox_2400.aspx</guid>
      <title> javascript work with Firefox?</title>
      <link>http://quomon.com/question_javascript-work-Firefox_2400.aspx</link>
      <description>Any idea how to make that javascript work with Firefox? &lt;br&gt;&lt;br&gt;Cheers,DK Moorthy</description>
      <author>karbagamoorthy</author>
      <pubDate>Wed, 20 Jun 2007 01:56:28 GMT</pubDate>
      <comments>http://quomon.com/question_javascript-work-Firefox_2400.aspx#comments</comments>
      <category>JavaScript, .net, CSS, HTML, internet, information technology, Databases, C#, web development, windows, windows xp, Websites, Web Design, PHP, firefox</category>
    </item>
    <item>
      <guid>http://quomon.com/question_how-give-custom-gradient-effect-background-datagridview-header-windows-net2-0_2313.aspx</guid>
      <title>how to give custom gradient effect background to datagridview header in windows .net2.0?</title>
      <link>http://quomon.com/question_how-give-custom-gradient-effect-background-datagridview-header-windows-net2-0_2313.aspx</link>
      <description>how to give custom gradient effect background to datagridview header in windows .net2.0?</description>
      <author>webmavin</author>
      <pubDate>Thu, 14 Jun 2007 13:41:48 GMT</pubDate>
      <comments>http://quomon.com/question_how-give-custom-gradient-effect-background-datagridview-header-windows-net2-0_2313.aspx#comments</comments>
      <category>windows, datagridview, Gradient, .net, C#</category>
    </item>
    <item>
      <guid>http://quomon.com/question_How-Identify-browser-java-script-IE-Safari-Firefox_2311.aspx</guid>
      <title>How to Identify the browser using java script (for IE/Safari/Firefox)</title>
      <link>http://quomon.com/question_How-Identify-browser-java-script-IE-Safari-Firefox_2311.aspx</link>
      <description>How to Identify the browser using java script (for IE/Safari/Firefox)</description>
      <author>neerusaini</author>
      <pubDate>Thu, 14 Jun 2007 06:33:22 GMT</pubDate>
      <comments>http://quomon.com/question_How-Identify-browser-java-script-IE-Safari-Firefox_2311.aspx#comments</comments>
      <category>firefox, safari, .net, CSS, C#, Databases, HTML, ajax, java, JavaScript, Web Design, web development, Websites</category>
    </item>
  </channel>
</rss>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title id="_ctl0_pageTitle">Quomon.com - Questions and Answers for IT &amp; Graphic Design Professionals</title>
	<meta id="_ctl0_metaKeywords" name="keywords" content="IT experts, Graphic Design experts, questions, forum, answers"></meta>
	<meta id="_ctl0_metaDescription" name="description" content="Questions and Answers for IT &amp; Graphic Design Professionals"></meta>
	<link id="_ctl0_cssLink" rel="stylesheet" href="styles/style.css" type="text/css"></link>
	<link rel="SHORTCUT ICON" href="favicon.ico">
	<link id="_ctl0_rssFeedLink" rel="alternate" type="application/rss+xml" title="RSS"></link>
	<meta id="_ctl0_metaLanguage" http-equiv="content-language" content="en"></meta>
</head>
<body onload="javascript: setSearchTab('');">
    <center>
        <form name="aspnetForm" method="post" action="questionsrss.aspx?categoryIds=57&amp;" id="aspnetForm">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUENTM4MQ9kFgJmD2QWBgIFDxYCHgdjb250ZW50BQJlbmQCBg9kFhICCA8WAh4FdGl0bGUFGElUIFNvbHV0aW9ucyBhbmQgRXhwZXJ0cxYCZg8WAh4Dc3JjBRR+L2ltYWdlcy9sb2dvX2VuLmdpZmQCCQ8WAh8BBRJBc2sgYW4gSVQgcXVlc3Rpb24WAgIBDw8WAh4ISW1hZ2VVcmwFGn4vaW1hZ2VzL3RvcG5hdl9hc2tfZW4uanBnZGQCCg8WAh8BBRJTb2x2ZSBJVCBxdWVzdGlvbnMWAgIBDw8WAh8DBR1+L2ltYWdlcy90b3BuYXZfYW5zd2VyX2VuLmpwZ2RkAgsPFgIfAQURRmluZCBJVCBzb2x1dGlvbnMWAgIBDw8WAh8DBR1+L2ltYWdlcy90b3BuYXZfYnJvd3NlX2VuLmpwZ2RkAgwPFgIfAQUVU2VhcmNoIGZvciBJVCBleHBlcnRzFgICAQ8PFgIfAwUdfi9pbWFnZXMvdG9wbmF2X2V4cGVydF9lbi5qcGdkZAINDxYCHgdWaXNpYmxlaGQCFQ8WAh4EaHJlZgVnaHR0cDovL2RlbC5pY2lvLnVzL3Bvc3Q/dj00Jm5vdWkmanVtcD1jbG9zZSZ1cmw9aHR0cDovL3d3dy5xdW9tb24uY29tL3F1ZXN0aW9uc3Jzcy5hc3B4P2NhdGVnb3J5SWRzPTU3JmQCFg8WAh8FBVpodHRwOi8vZGlnZy5jb20vc3VibWl0P3BoYXNlPTImdXJsPWh0dHA6Ly93d3cucXVvbW9uLmNvbS9xdWVzdGlvbnNyc3MuYXNweD9jYXRlZ29yeUlkcz01NyZkAiUPFgQfBQUZaHR0cDovL3d3dy5hbnN3ZXJiYXNlLmNvbR4JaW5uZXJodG1sBR5RdWVzdGlvbnMgYW5kIEFuc3dlcnMgU29mdHdhcmVkAgcPDxYCHgRUZXh0BacBPHNjcmlwdCBzcmM9Imh0dHA6Ly93d3cuZ29vZ2xlLWFuYWx5dGljcy5jb20vdXJjaGluLmpzIiB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiPjwvc2NyaXB0PjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0Ij5fdWFjY3QgPSAiVUEtNDI0MTE3LTEiO3VyY2hpblRyYWNrZXIoKTs8L3NjcmlwdD5kZGRIDE1SIh5i0U5MST4lBPbNAAAAAA==" />

<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWBAKb6ZWyCwKTq4vcCAKsm/HVDgK74eDbBOEndpQ0ANsqvJTcjcVijbgAAAAA" />    
	        <div class="page">
	            
		        <div class="logo" style="margin-top: 6px;">
			        <span class="topRight"><a href="Help.aspx" id="_ctl0_howQuomonWorksLink">Help</a> </span>
			        <script type="text/javascript" src="javascript/Main.js" language="javascript"></script>
			        <span class="topSearchArea"><span class="textSmall"><span id="searchQuestions" onclick="javascript: setSearchTab(this.id);" style="CURSOR: pointer">
						        &nbsp;<span id="_ctl0_questionsLabel">Questions</span>&nbsp;</span>&nbsp;|&nbsp;<span id="searchSolutions" onclick="javascript: setSearchTab(this.id);" style="CURSOR: pointer">&nbsp;<span id="_ctl0_Label1">Solutions</span>&nbsp;</span>&nbsp;|&nbsp;<span id="searchExperts" onclick="javascript: setSearchTab(this.id);" style="CURSOR: pointer">&nbsp;<span id="_ctl0_expertsLabel">Experts</span>&nbsp;</span>
				        </span>
				    <br>
				    <input name="_ctl0:searchText" type="text" maxlength="40" id="_ctl0_searchText" class="button" style="width: 200px" />&nbsp;<input type="submit" name="_ctl0:searchButton" value="Search" id="_ctl0_searchButton" class="button" />
				    <input name="_ctl0:searchType" type="text" id="_ctl0_searchType" style="DISPLAY: none" />
				    <script>
			            var searchTypeTextBox = document.getElementById('_ctl0_searchType');
			        </script>
			        </span><a href="default.aspx" id="_ctl0_logoHomeLink" title="IT Solutions and Experts"><img src="images/logo_en.gif" id="_ctl0_logoImage" border="0" alt="Quomon Logo" /></a>
			        <div style="CLEAR: right"></div>
			        <span class="topNavButton"><a href="AskQuestion.aspx" id="_ctl0_askQuestionLink" title="Ask an IT question">
					        <img id="_ctl0_askImage" src="images/topnav_ask_en.jpg" alt="Ask a Question" border="0" /></a></span>
			        <span class="topNavButton"><a href="AnswerQuestions.aspx?view=answer" id="_ctl0_answerQuestionsLink" title="Solve IT questions">
					        <img id="_ctl0_answerImage" src="images/topnav_answer_en.jpg" alt="Answer questions" border="0" /></a></span>
			        <span class="topNavButton"><a href="BrowseQuestions.aspx?view=browse" id="_ctl0_browseQuestionsLink" title="Find IT solutions">
					        <img id="_ctl0_browseImage" src="images/topnav_browse_en.jpg" alt="Browse Existing Solutions" border="0" /></a></span>
			        <span class="topNavButton"><a href="ExpertSearchHome.aspx" id="_ctl0_expertSearchLink" title="Search for IT experts">
					        <img id="_ctl0_findExpertsImage" src="images/topnav_expert_en.jpg" alt="Find an Expert" border="0" /></a></span>
		    </div>
		    <div style="clear: left"></div>
		    
		    <div id="_ctl0_loggedOutSubMenuDiv" class="loggedOutSubMenu">
			    <a href="register.aspx" id="_ctl0_registerLink">Register</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="login.aspx" id="_ctl0_loginLink">Login</a>
		    </div>
		    <hr class="topHr">
		    <div id="pageContent">
                
                
                
                <div class="leftColumn">
                     
                    
                    
                </div>
                <div class="rightColumn">
                     
                    
                    
                </div>
            </div>
            <div class="passItOnDiv" style="clear: both;">
	            <table cellpadding="0" cellspacing="0" border="0" style="border-collapse: collapse;">
		            <tr style="height: 8px;">
			            <td align="left" style="width: 8px;"><img src="images/corner5_tl.gif"></td>
			            <td bgcolor="#EBEBEB" style="width: 960px;"><img src="images/invisible.gif"></td>
			            <td align="right" style="width: 8px;"><img src="images/corner5_tr.gif"></td>
		            </tr>
		            <tr bgcolor="#EBEBEB">
			            <td style="text-align: center" colspan="3">
			                <p><b><span id="_ctl0_passItOnLabel">"Psst, Quomon is a great site.  Pass it on."</span></b>&nbsp;&nbsp;&nbsp;&nbsp;
				            <a href="RecommendUs.aspx" id="_ctl0_tellAFriendLink">Tell a Friend</a>&nbsp;&nbsp;|&nbsp;&nbsp;
				            <a href="LinkToUs.aspx" id="_ctl0_linkToUsLink">Link To Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;						
				            <a href="http://del.icio.us/post?v=4&noui&jump=close&url=http://www.quomon.com/questionsrss.aspx?categoryIds=57&" id="_ctl0_deliciousLink"><img src="http://del.icio.us/static/img/delicious.med.gif" id="_ctl0_Img1" border="0" /> <span id="_ctl0_deliciousLabel">Save to Delicious</span></a>&nbsp;&nbsp;|&nbsp;&nbsp;						
				            <a href="http://digg.com/submit?phase=2&url=http://www.quomon.com/questionsrss.aspx?categoryIds=57&" id="_ctl0_diggLink"><img src="http://digg.com/img/badges/16x16-digg-guy.png" width="16" height="16" alt="Digg!" border="0"> <span id="_ctl0_diggLabel">Digg it</span></a>
				            </p>
			            </td>
		            </tr>
		            <tr style="height: 8px;">
			            <td align="left"><img src="images/corner5_bl.gif"></td>
			            <td bgcolor="#EBEBEB"><img src="images/invisible.gif"></td>
			            <td align="right"><img src="images/corner5_br.gif"></td>
		            </tr>
	            </table>
            </div>
            <hr class="bottomHr">
            <div class="bottomLinks">
	            <span class="copyrightSpan"><span class="textSmall">© 2005-2010&nbsp;&nbsp;&nbsp;<img src="images/subpage_logo_small.gif" id="_ctl0_quomonLogoSmallImage" border="0" alt="Quomon Small Logo" /></span></span> 
	            <span class="textSmall"><a href="Help.aspx" id="_ctl0_A1">Help</a>&nbsp;&nbsp;|&nbsp;&nbsp;<span id="_ctl0_revenuesharingFooterLink"><a href="RevenueSharingOverview.aspx" id="_ctl0_a10">Revenue Sharing</a>&nbsp;&nbsp;|&nbsp;&nbsp;</span><a href="Advertising.aspx" id="_ctl0_advertisingLink">Advertising</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="CorporateSolutions.aspx" id="_ctl0_corporateSolutionsLink">Corporate Solutions</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="LinkToUs.aspx" id="_ctl0_linkToUs2Link">Link To Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="AboutUs.aspx" id="_ctl0_aboutUsLink">About Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="ContactUs.aspx" id="_ctl0_contactUsLink">Contact Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="TermsOfUse.aspx" id="_ctl0_termsOfUseLink">Terms of Use</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="Privacy.aspx" id="_ctl0_privacyLink">Privacy</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="AllQuestions.aspx" id="_ctl0_allQuestionsLink">All Questions</a></span>
            </div>
            <center>
                <p></p>
                <br>

                <table width="700" cellpadding="0" cellspacing="0" border="0" style="float: left">
		            <tr>
			            <td align="left" width="1%">
			            <img src="images/corner5_tl.gif"></td>
			            <td width="98%" colspan="2" bgcolor="#EBEBEB">
			            </td>
			            <td align="right" width="1%">
			            <img src="images/corner5_tr.gif"></td>
		            </tr>
		            <tr bgcolor="#EBEBEB">
			            <td colspan="4">
				            <div class="content" style="height: 100px">
					            <table cellpadding="0" width="95%" cellspacing="2" border="0">
						            <tr>
							            <td align="left" colspan="2" height="20" valign="top">
							            <p id="_ctl0_languageOptionsLabel" style="font-weight: bold">Language Options</p>
							            </td>
						            </tr>
						            <tr>
							            <td align="left" width="15%" valign="top">
							            <p>English:</p>
							            </td>
							            <td align="left" width="85%" valign="top">
							            <a href="http://www.quomon.com">www.quomon.com</a>
							            </td>
						            </tr>
						            <tr>
							            <td align="left" valign="top">
							            <p>Español:</p>
							            </td>
							            <td align="left" valign="top">
							            <a href="http://www.quomon.es">www.quomon.es</a>
							            </td>
						            </tr>
					            </table>
					        </div>
							            <!--table cellpadding="0" width="95%" cellspacing="2" border="0" style="padding-left: 5px;">
								            <tr>
									            <td align="left" height="20" valign="top">
									            <p id="_ctl0_P1" style="font-weight: bold">Quomon Blog</p>
									            </td>
								            </tr>
								            <tr>
									            <td align="left" valign="top">
										            <a href="http://blog.quomon.com">blog.quomon.com</a>
									            </td>
								            </tr>
							            </table-->
						            
			            </td>
		            </tr>
		            <tr>
			            <td align="left" width="1%"><img src="images/corner5_bl.gif"></td>
			            <td width="98%" colspan="2" bgcolor="#EBEBEB">
			            </td>
			            <td align="right" width="1%"><img src="images/corner5_br.gif"></td>
		            </tr>
	            </table>

	            <table width="270" cellpadding="0" cellspacing="0" border="0" style="float: left; margin-left: 10px">
		            <tr>
			            <td align="left" width="1%">
			            <img src="images/corner5_tl.gif"></td>
			            <td width="98%" colspan="2" bgcolor="#EBEBEB">
			            </td>
			            <td align="right" width="1%">
			            <img src="images/corner5_tr.gif"></td>
		            </tr>
		            <tr bgcolor="#EBEBEB">
			            <td colspan="4">
			                <div class="content" style="height: 100px">
			                    <p id="_ctl0_sponsorsLabel" style="font-weight: bold;">Sponsors</p>
				                <p style="line-height: 20px;"><a href="http://www.answerbase.com" id="_ctl0_questionAnswerLink">Questions and Answers Software</a><br />
				            </div>
			            </td>
		            </tr>
		            <tr>
			            <td align="left" width="1%"><img src="images/corner5_bl.gif"></td>
			            <td width="98%" colspan="2" bgcolor="#EBEBEB">
			            </td>
			            <td align="right" width="1%"><img src="images/corner5_br.gif"></td>
		            </tr>
	            </table>
	            <div style="height: 20px">&nbsp;</div>
            </center>    
        </div>
        </form>
    </center>
    <span id="_ctl0_googleAnalytics"><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript">_uacct = "UA-424117-1";urchinTracker();</script></span>
</body>
</html>
