﻿<?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 - .net</title>
    <link>https://quomon.com</link>
    <description>Questions and Answers for IT &amp; Graphic Design Professionals - .net</description>
    <language>en-us</language>
    <copyright>Quomon</copyright>
    <generator />
    <webMaster />
    <lastBuildDate>Tue, 09 Jun 2026 11:11:22 GMT</lastBuildDate>
    <ttl>20</ttl>
    <item>
      <guid>https://quomon.com/3699384/Questions-about-network-speed</guid>
      <title>Questions about network speed</title>
      <link>https://quomon.com/3699384/Questions-about-network-speed</link>
      <description>After the computer is plugged into the Internet, try to download something. It's fast, but when you browse the web or watch videos, you can't load it. What's the reason</description>
      <author>abqualdolce</author>
      <pubDate>Wed, 04 Aug 2021 03:26:16 GMT</pubDate>
      <comments>https://quomon.com/3699384/Questions-about-network-speed#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>https://quomon.com/1511385/What-percentage-of-websites-are-using-Net-and-will-it-become-obsolete</guid>
      <title>What percentage of websites are using .Net and will it become obsolete?</title>
      <link>https://quomon.com/1511385/What-percentage-of-websites-are-using-Net-and-will-it-become-obsolete</link>
      <description />
      <author>john45</author>
      <pubDate>Wed, 21 Jan 2015 16:39:01 GMT</pubDate>
      <comments>https://quomon.com/1511385/What-percentage-of-websites-are-using-Net-and-will-it-become-obsolete#comments</comments>
      <category>.net, programming</category>
    </item>
    <item>
      <guid>https://quomon.com/49990/Sir-I-have-3-dropdown-list-Asp-net-on-my-form-I-wanted-to-validate-them-together-by-javascript</guid>
      <title>Sir I have 3 dropdown list  Asp .net on my form &amp; I wanted to validate them together by javascript</title>
      <link>https://quomon.com/49990/Sir-I-have-3-dropdown-list-Asp-net-on-my-form-I-wanted-to-validate-them-together-by-javascript</link>
      <description>Sir I am having 3 dropdown list control on my form which are of Asp .net controls and I wanted to validate all of them with single javascript function so please help me in this</description>
      <author>taannmay</author>
      <pubDate>Sat, 05 Feb 2011 10:42:36 GMT</pubDate>
      <comments>https://quomon.com/49990/Sir-I-have-3-dropdown-list-Asp-net-on-my-form-I-wanted-to-validate-them-together-by-javascript#comments</comments>
      <category>JavaScript, .net, forms, asp, control</category>
    </item>
    <item>
      <guid>https://quomon.com/51987/I-need-to-pass-USER-defined-type-Type-table-based-on-a-record-Type-to-Oracle-API-using-Net</guid>
      <title>I need to pass USER defined type (Type table based on a record Type) to Oracle API using .Net</title>
      <link>https://quomon.com/51987/I-need-to-pass-USER-defined-type-Type-table-based-on-a-record-Type-to-Oracle-API-using-Net</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;addressline1 company.address_line_1%TYPE,
&lt;br&gt;addressline2 company.address_line_2%TYPE,
&lt;br&gt;addressline3 company.address_line_3%TYPE,
&lt;br&gt;addressline4 company.address_line_4%TYPE,
&lt;br&gt;postalcode   company.postcode%TYPE,
&lt;br&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 = "ACQUISITIONS_API.CREATE_DISTRIBUTOR";
&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["I_BROADCASTER_REF_USAGE"].Value = "PDS";
&lt;br&gt;                cmd.Parameters["I_COMPANY_KEY"].Value = dist.companyKey;
&lt;br&gt;                cmd.Parameters["I_NAME"].Value = dist.name;
&lt;br&gt;                //cmd.Parameters.add(addresses);
&lt;br&gt;                cmd.Parameters["I_ADDRESSES"].Value = addresses;
&lt;br&gt;                cmd.Parameters["I_CONTACT_FIRST_NAME"].Value = dist.contactFirstName;
&lt;br&gt;                cmd.Parameters["I_CONTACT_LAST_NAME"].Value = dist.contactLastName;                
&lt;br&gt;                cmd.Parameters["I_COMPANY_TYPE"].Value = "D";
&lt;br&gt;                cmd.Parameters["I_STATION_ID"].Value = "0";
&lt;br&gt;
&lt;br&gt;                database.LoadDataSet(cmd, resultDataSet, new string[] { "Result" });
&lt;br&gt;
&lt;br&gt;                if ((cmd.Parameters["O_RESPONSE_CURSOR"].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("web.pilatmedia.com", "ProgramAPI", ex.Message, ex.Number.ToString(), "SampleWithCustomException()", 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 11:24:49 GMT</pubDate>
      <comments>https://quomon.com/51987/I-need-to-pass-USER-defined-type-Type-table-based-on-a-record-Type-to-Oracle-API-using-Net#comments</comments>
      <category>.net, C# and Oracle</category>
    </item>
    <item>
      <guid>https://quomon.com/49107/ISO-8583-Parser</guid>
      <title>ISO 8583 Parser</title>
      <link>https://quomon.com/49107/ISO-8583-Parser</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 09:13:48 GMT</pubDate>
      <comments>https://quomon.com/49107/ISO-8583-Parser#comments</comments>
      <category>.net, application, option, ISO 8583</category>
    </item>
    <item>
      <guid>https://quomon.com/48623/Anybody-has-experience-with-Facebook-connect</guid>
      <title>Anybody has experience with Facebook connect?</title>
      <link>https://quomon.com/48623/Anybody-has-experience-with-Facebook-connect</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 19:05:39 GMT</pubDate>
      <comments>https://quomon.com/48623/Anybody-has-experience-with-Facebook-connect#comments</comments>
      <category>Websites, asp, email, password, facebook, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/48449/how-can-i-get-my-application-to-start-up-automatically-when-windows-starts</guid>
      <title>how can i get my application to start up automatically when windows starts?</title>
      <link>https://quomon.com/48449/how-can-i-get-my-application-to-start-up-automatically-when-windows-starts</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 18:10:15 GMT</pubDate>
      <comments>https://quomon.com/48449/how-can-i-get-my-application-to-start-up-automatically-when-windows-starts#comments</comments>
      <category>windows, .net, application, startup</category>
    </item>
    <item>
      <guid>https://quomon.com/48446/I-need-to-integrate-a-virus-scanner-into-my-net-application-How-do-I-do-that</guid>
      <title>I need to integrate a virus scanner into my .net application. How do I do that?</title>
      <link>https://quomon.com/48446/I-need-to-integrate-a-virus-scanner-into-my-net-application-How-do-I-do-that</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 14:44:52 GMT</pubDate>
      <comments>https://quomon.com/48446/I-need-to-integrate-a-virus-scanner-into-my-net-application-How-do-I-do-that#comments</comments>
      <category>Websites, files, antivirus, virus, excel, .net, programming</category>
    </item>
    <item>
      <guid>https://quomon.com/48187/setting-read-write-permissions-for-a-windows-user-programatically-in-c-net</guid>
      <title>setting read/write permissions for a windows user programatically in c# .net?</title>
      <link>https://quomon.com/48187/setting-read-write-permissions-for-a-windows-user-programatically-in-c-net</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 14:01:15 GMT</pubDate>
      <comments>https://quomon.com/48187/setting-read-write-permissions-for-a-windows-user-programatically-in-c-net#comments</comments>
      <category>windows, .net, C#, permissions</category>
    </item>
    <item>
      <guid>https://quomon.com/48182/How-do-I-copy-everything-within-a-folder-to-another-folder-using-c-net</guid>
      <title>How do I copy everything within a folder to another folder using c#.net?</title>
      <link>https://quomon.com/48182/How-do-I-copy-everything-within-a-folder-to-another-folder-using-c-net</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 12:12:59 GMT</pubDate>
      <comments>https://quomon.com/48182/How-do-I-copy-everything-within-a-folder-to-another-folder-using-c-net#comments</comments>
      <category>copy, files, .net, C#, programming</category>
    </item>
    <item>
      <guid>https://quomon.com/48146/how-do-i-create-windows-taskbar-notifications-in-net</guid>
      <title>how do i create windows taskbar notifications in .net?</title>
      <link>https://quomon.com/48146/how-do-i-create-windows-taskbar-notifications-in-net</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 16:22:59 GMT</pubDate>
      <comments>https://quomon.com/48146/how-do-i-create-windows-taskbar-notifications-in-net#comments</comments>
      <category>windows, notifications, .net, C#, taskbar, windows application</category>
    </item>
    <item>
      <guid>https://quomon.com/48136/how-to-export-gridview-data-s-into-Excel</guid>
      <title>how to export gridview data's into Excel?</title>
      <link>https://quomon.com/48136/how-to-export-gridview-data-s-into-Excel</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 05:30:50 GMT</pubDate>
      <comments>https://quomon.com/48136/how-to-export-gridview-data-s-into-Excel#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>https://quomon.com/48101/i-want-to-insert-bulk-of-records-into-table-thank-you</guid>
      <title>i want to insert bulk of records into table?thank you</title>
      <link>https://quomon.com/48101/i-want-to-insert-bulk-of-records-into-table-thank-you</link>
      <description>I want to  insert 10 records based on some condition</description>
      <author>priyaravi2008</author>
      <pubDate>Sat, 07 Mar 2009 03:02:34 GMT</pubDate>
      <comments>https://quomon.com/48101/i-want-to-insert-bulk-of-records-into-table-thank-you#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>https://quomon.com/48078/sending-an-email-in-net-the-specified-string-is-not-in-the-form-required-for-a-subject</guid>
      <title>sending an email in .net: the specified string is not in the form required for a subject?</title>
      <link>https://quomon.com/48078/sending-an-email-in-net-the-specified-string-is-not-in-the-form-required-for-a-subject</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 15:38:17 GMT</pubDate>
      <comments>https://quomon.com/48078/sending-an-email-in-net-the-specified-string-is-not-in-the-form-required-for-a-subject#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>https://quomon.com/48055/How-do-i-pass-a-table-variable-or-temp-table-as-a-input-paramenter-to-a-stored-procedure-HELP</guid>
      <title>How do i pass a table variable or temp table as a input paramenter to a stored procedure????? HELP!</title>
      <link>https://quomon.com/48055/How-do-i-pass-a-table-variable-or-temp-table-as-a-input-paramenter-to-a-stored-procedure-HELP</link>
      <description>I have a select that returns one column with multiple rows which i will populate into a temp table. But then i need to pass that temp table to another stored procedure. Please explain with sample code as to how to do this.</description>
      <author>grantmarrow</author>
      <pubDate>Thu, 12 Feb 2009 08:55:40 GMT</pubDate>
      <comments>https://quomon.com/48055/How-do-i-pass-a-table-variable-or-temp-table-as-a-input-paramenter-to-a-stored-procedure-HELP#comments</comments>
      <category>SQL SERVER 2005, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/47970/intermittent-web-config-error-Could-not-create-Windows-user-token-from-the-credentials-specified</guid>
      <title>intermittent web.config error: Could not create Windows user token from the credentials specified</title>
      <link>https://quomon.com/47970/intermittent-web-config-error-Could-not-create-Windows-user-token-from-the-credentials-specified</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 11:39:43 GMT</pubDate>
      <comments>https://quomon.com/47970/intermittent-web-config-error-Could-not-create-Windows-user-token-from-the-credentials-specified#comments</comments>
      <category>.net, web.config</category>
    </item>
    <item>
      <guid>https://quomon.com/47865/How-do-Save-info-from-datagridview-and-textbox-in-sql-2000-databse</guid>
      <title>How do Save info from datagridview and textbox in sql 2000 databse</title>
      <link>https://quomon.com/47865/How-do-Save-info-from-datagridview-and-textbox-in-sql-2000-databse</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 15:08:42 GMT</pubDate>
      <comments>https://quomon.com/47865/How-do-Save-info-from-datagridview-and-textbox-in-sql-2000-databse#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>https://quomon.com/47400/how-do-i-open-a-file-dialog-in-net-a-windows-application</guid>
      <title>how do i open a file dialog in .net (a windows application)?</title>
      <link>https://quomon.com/47400/how-do-i-open-a-file-dialog-in-net-a-windows-application</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 09:46:32 GMT</pubDate>
      <comments>https://quomon.com/47400/how-do-i-open-a-file-dialog-in-net-a-windows-application#comments</comments>
      <category>.net, C#, files, windows, Software, Development</category>
    </item>
    <item>
      <guid>https://quomon.com/47382/How-do-I-get-the-local-server-ip-adress-in-asp-net</guid>
      <title>How do I get the local server ip adress in asp.net?</title>
      <link>https://quomon.com/47382/How-do-I-get-the-local-server-ip-adress-in-asp-net</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 08:47:47 GMT</pubDate>
      <comments>https://quomon.com/47382/How-do-I-get-the-local-server-ip-adress-in-asp-net#comments</comments>
      <category>.net, C#, ip address</category>
    </item>
    <item>
      <guid>https://quomon.com/47368/What-is-a-good-source-for-a-profanity-filter-that-takes-all-possibilities-into-account</guid>
      <title>What is a good source for a profanity filter that takes all possibilities into account?</title>
      <link>https://quomon.com/47368/What-is-a-good-source-for-a-profanity-filter-that-takes-all-possibilities-into-account</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 09:13:02 GMT</pubDate>
      <comments>https://quomon.com/47368/What-is-a-good-source-for-a-profanity-filter-that-takes-all-possibilities-into-account#comments</comments>
      <category>Profanity, Filters, Profanity Filters, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/47309/Dynamically-I-created-ASP-NET-user-control-using-ASP-NET-Ajax-and-Web-Service</guid>
      <title>Dynamically I created ASP.NET user control using ASP.NET Ajax and Web Service</title>
      <link>https://quomon.com/47309/Dynamically-I-created-ASP-NET-user-control-using-ASP-NET-Ajax-and-Web-Service</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 14:07:23 GMT</pubDate>
      <comments>https://quomon.com/47309/Dynamically-I-created-ASP-NET-user-control-using-ASP-NET-Ajax-and-Web-Service#comments</comments>
      <category>.net, C#</category>
    </item>
    <item>
      <guid>https://quomon.com/47308/Using-web-part-in-web-server-is-not-possible</guid>
      <title>Using web part in web server is not possible</title>
      <link>https://quomon.com/47308/Using-web-part-in-web-server-is-not-possible</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 10:42:22 GMT</pubDate>
      <comments>https://quomon.com/47308/Using-web-part-in-web-server-is-not-possible#comments</comments>
      <category>.net, C#</category>
    </item>
    <item>
      <guid>https://quomon.com/47270/regular-expressions-tester-for-net-c</guid>
      <title>regular expressions tester for .net - c#?</title>
      <link>https://quomon.com/47270/regular-expressions-tester-for-net-c</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 08:53:08 GMT</pubDate>
      <comments>https://quomon.com/47270/regular-expressions-tester-for-net-c#comments</comments>
      <category>testing, regular expressions, C#, .net, regex</category>
    </item>
    <item>
      <guid>https://quomon.com/51469/add-a-wireless-print-copy-machine-to-my-laptop</guid>
      <title>add a wireless print/copy machine to my laptop</title>
      <link>https://quomon.com/51469/add-a-wireless-print-copy-machine-to-my-laptop</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 19:59:17 GMT</pubDate>
      <comments>https://quomon.com/51469/add-a-wireless-print-copy-machine-to-my-laptop#comments</comments>
      <category>html, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/51437/how-to-call-function-in-aspx-cs-from-ascx-cs</guid>
      <title>how to call function in .aspx.cs from ascx.cs</title>
      <link>https://quomon.com/51437/how-to-call-function-in-aspx-cs-from-ascx-cs</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 11:53:22 GMT</pubDate>
      <comments>https://quomon.com/51437/how-to-call-function-in-aspx-cs-from-ascx-cs#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>https://quomon.com/51426/my-moniter-is-blasting-when-connect-to-pc</guid>
      <title>my moniter is blasting when connect to pc</title>
      <link>https://quomon.com/51426/my-moniter-is-blasting-when-connect-to-pc</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 05:52:34 GMT</pubDate>
      <comments>https://quomon.com/51426/my-moniter-is-blasting-when-connect-to-pc#comments</comments>
      <category>koieka, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/47041/how-to-read-the-contents-of-filepath-passed-at-run-time</guid>
      <title>how to read the contents of filepath passed at run time</title>
      <link>https://quomon.com/47041/how-to-read-the-contents-of-filepath-passed-at-run-time</link>
      <description>i want to read the resume contents of the corresponding filepath that is uploaded at runtime? say</description>
      <author>dineshkumarmani</author>
      <pubDate>Tue, 12 Aug 2008 02:57:40 GMT</pubDate>
      <comments>https://quomon.com/47041/how-to-read-the-contents-of-filepath-passed-at-run-time#comments</comments>
      <category>.net, C#, Databases, web development, Websites, JavaScript</category>
    </item>
    <item>
      <guid>https://quomon.com/47035/slow-asp-net-site-render-method-takes-forever</guid>
      <title>slow asp.net site, render method takes forever</title>
      <link>https://quomon.com/47035/slow-asp-net-site-render-method-takes-forever</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 16:38:04 GMT</pubDate>
      <comments>https://quomon.com/47035/slow-asp-net-site-render-method-takes-forever#comments</comments>
      <category>Websites, .net, C#, web development</category>
    </item>
    <item>
      <guid>https://quomon.com/47019/windows-service-and-file-format-exception</guid>
      <title>windows service and file format exception.</title>
      <link>https://quomon.com/47019/windows-service-and-file-format-exception</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 = "";
&lt;br&gt;            int itemid = 0;
&lt;br&gt;            stylenum = "200899-01";
&lt;br&gt;            string filenum = "";
&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(("\\\\Ccsrv2\\publicfiles\\All\\MARKETING\\Product Images\\Style Images\\August 2008 Market\\Test"));
&lt;br&gt;                //(@"C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder");
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;                foreach (string file in files)
&lt;br&gt;                {
&lt;br&gt;                    index = file.IndexOf(".");
&lt;br&gt;                    filenum = file.Remove(index, 3);
&lt;br&gt;                    index = file.Length;
&lt;br&gt;                    filenum = file.Replace("\\", "");
&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 = "";
&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(@"C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder\\tbl" + itemid);
&lt;br&gt;                        //System.IO.File.Copy(file, @"\\Pdserver.tsiag.com\d$\Library\tbl" + itemid + "\" + filenum + ".jpg");
&lt;br&gt;
&lt;br&gt; 
&lt;br&gt;
&lt;br&gt;                        System.IO.Directory.CreateDirectory(@"\\Pdserver\\d:$\\devlibrary\\tblItem" + itemid);
&lt;br&gt;                        // System.IO.File.Copy(file, @"C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder\\tbl" + itemid + "\\" + newfilename + ".jpg");
&lt;br&gt;                      //  System.IO.File.Copy(file, "\\\\Pdserver\\d$\\devlibrary\\tblItem" + itemid + "\\" + newfilename.ToString() + ".jpg");
&lt;br&gt;                        System.IO.File.Copy(file, @"\\Pdserver.tsiag.com\\d:$\\Library\\tbl" + itemid + "\\" + filenum + ".jpg");
&lt;br&gt;                        DAImage.InsertImage("\\tblItem" + itemid + "\\" + newfilename.ToString() + ".jpg", 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 17:10:26 GMT</pubDate>
      <comments>https://quomon.com/47019/windows-service-and-file-format-exception#comments</comments>
      <category>web development, information technology, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/47697/windows-service-and-file-format-exception</guid>
      <title>windows service and file format exception.</title>
      <link>https://quomon.com/47697/windows-service-and-file-format-exception</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 = "";
&lt;br&gt;            int itemid = 0;
&lt;br&gt;            stylenum = "200899-01";
&lt;br&gt;            string filenum = "";
&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(("\\\\Ccsrv2\\publicfiles\\All\\MARKETING\\Product Images\\Style Images\\August 2008 Market\\Test"));
&lt;br&gt;                //(@"C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder");
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;                foreach (string file in files)
&lt;br&gt;                {
&lt;br&gt;                    index = file.IndexOf(".");
&lt;br&gt;                    filenum = file.Remove(index, 3);
&lt;br&gt;                    index = file.Length;
&lt;br&gt;                    filenum = file.Replace("\\", "");
&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 = "";
&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(@"C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder\\tbl" + itemid);
&lt;br&gt;                        //System.IO.File.Copy(file, @"\\Pdserver.tsiag.com\d$\Library\tbl" + itemid + "\" + filenum + ".jpg");
&lt;br&gt;
&lt;br&gt; 
&lt;br&gt;
&lt;br&gt;                        System.IO.Directory.CreateDirectory(@"\\Pdserver\\d:$\\devlibrary\\tblItem" + itemid);
&lt;br&gt;                        // System.IO.File.Copy(file, @"C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder\\tbl" + itemid + "\\" + newfilename + ".jpg");
&lt;br&gt;                      //  System.IO.File.Copy(file, "\\\\Pdserver\\d$\\devlibrary\\tblItem" + itemid + "\\" + newfilename.ToString() + ".jpg");
&lt;br&gt;                        System.IO.File.Copy(file, @"\\Pdserver.tsiag.com\\d:$\\Library\\tbl" + itemid + "\\" + filenum + ".jpg");
&lt;br&gt;                        DAImage.InsertImage("\\tblItem" + itemid + "\\" + newfilename.ToString() + ".jpg", 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 17:10:26 GMT</pubDate>
      <comments>https://quomon.com/47697/windows-service-and-file-format-exception#comments</comments>
      <category>web development, information technology, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/47828/windows-service-and-file-format-exception</guid>
      <title>windows service and file format exception.</title>
      <link>https://quomon.com/47828/windows-service-and-file-format-exception</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 = "";
&lt;br&gt;            int itemid = 0;
&lt;br&gt;            stylenum = "200899-01";
&lt;br&gt;            string filenum = "";
&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(("\\\\Ccsrv2\\publicfiles\\All\\MARKETING\\Product Images\\Style Images\\August 2008 Market\\Test"));
&lt;br&gt;                //(@"C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder");
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;                foreach (string file in files)
&lt;br&gt;                {
&lt;br&gt;                    index = file.IndexOf(".");
&lt;br&gt;                    filenum = file.Remove(index, 3);
&lt;br&gt;                    index = file.Length;
&lt;br&gt;                    filenum = file.Replace("\\", "");
&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 = "";
&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(@"C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder\\tbl" + itemid);
&lt;br&gt;                        //System.IO.File.Copy(file, @"\\Pdserver.tsiag.com\d$\Library\tbl" + itemid + "\" + filenum + ".jpg");
&lt;br&gt;
&lt;br&gt; 
&lt;br&gt;
&lt;br&gt;                        System.IO.Directory.CreateDirectory(@"\\Pdserver\\d:$\\devlibrary\\tblItem" + itemid);
&lt;br&gt;                        // System.IO.File.Copy(file, @"C:\\Documents and Settings\\mduddebanda\\My Documents\\My Pictures\\DeleteFolder\\tbl" + itemid + "\\" + newfilename + ".jpg");
&lt;br&gt;                      //  System.IO.File.Copy(file, "\\\\Pdserver\\d$\\devlibrary\\tblItem" + itemid + "\\" + newfilename.ToString() + ".jpg");
&lt;br&gt;                        System.IO.File.Copy(file, @"\\Pdserver.tsiag.com\\d:$\\Library\\tbl" + itemid + "\\" + filenum + ".jpg");
&lt;br&gt;                        DAImage.InsertImage("\\tblItem" + itemid + "\\" + newfilename.ToString() + ".jpg", 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 17:10:26 GMT</pubDate>
      <comments>https://quomon.com/47828/windows-service-and-file-format-exception#comments</comments>
      <category>web development, information technology, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/46948/setup-creation</guid>
      <title>setup creation</title>
      <link>https://quomon.com/46948/setup-creation</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 07:30:46 GMT</pubDate>
      <comments>https://quomon.com/46948/setup-creation#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>https://quomon.com/46930/I-get-a-COMException-The-SendUsing-configuration-value-is-invalid-when-i-try-to-send-out-email</guid>
      <title>I get a COMException: The "SendUsing" configuration value is invalid when i try to send out email</title>
      <link>https://quomon.com/46930/I-get-a-COMException-The-SendUsing-configuration-value-is-invalid-when-i-try-to-send-out-email</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 13:16:21 GMT</pubDate>
      <comments>https://quomon.com/46930/I-get-a-COMException-The-SendUsing-configuration-value-is-invalid-when-i-try-to-send-out-email#comments</comments>
      <category>.net, C#, information technology, web development, Websites</category>
    </item>
    <item>
      <guid>https://quomon.com/46925/how-do-i-set-my-asp-net-site-to-show-a-maintenance-page-while-it-s-offline</guid>
      <title>how do i set my asp.net site to show a maintenance page, while it's offline?</title>
      <link>https://quomon.com/46925/how-do-i-set-my-asp-net-site-to-show-a-maintenance-page-while-it-s-offline</link>
      <description>is there any way to do this though the web.config file?</description>
      <author>dave</author>
      <pubDate>Thu, 26 Jun 2008 17:57:23 GMT</pubDate>
      <comments>https://quomon.com/46925/how-do-i-set-my-asp-net-site-to-show-a-maintenance-page-while-it-s-offline#comments</comments>
      <category>C#, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/51345/hi-I-am-pankaj-Singh</guid>
      <title>hi I am pankaj Singh</title>
      <link>https://quomon.com/51345/hi-I-am-pankaj-Singh</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;br&gt;Yours's
&lt;br&gt;Pankaj Kumar Singh</description>
      <author>pankajchampion82</author>
      <pubDate>Sun, 25 May 2008 07:59:17 GMT</pubDate>
      <comments>https://quomon.com/51345/hi-I-am-pankaj-Singh#comments</comments>
      <category>C#, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/46855/what-is-the-main-difference-between-asp-asp-net</guid>
      <title>what is the main difference between asp&amp;asp.net?</title>
      <link>https://quomon.com/46855/what-is-the-main-difference-between-asp-asp-net</link>
      <description>what is the main difference between asp&amp;amp;asp.net?</description>
      <author>suryahills</author>
      <pubDate>Sat, 03 May 2008 09:58:32 GMT</pubDate>
      <comments>https://quomon.com/46855/what-is-the-main-difference-between-asp-asp-net#comments</comments>
      <category>.net, information technology, web development</category>
    </item>
    <item>
      <guid>https://quomon.com/46656/RETRIEVE-THE-PROPERTIES-OF-OBJECTS-IN-MSSQL-2005</guid>
      <title>RETRIEVE THE PROPERTIES OF OBJECTS IN MSSQL 2005</title>
      <link>https://quomon.com/46656/RETRIEVE-THE-PROPERTIES-OF-OBJECTS-IN-MSSQL-2005</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 17:01:01 GMT</pubDate>
      <comments>https://quomon.com/46656/RETRIEVE-THE-PROPERTIES-OF-OBJECTS-IN-MSSQL-2005#comments</comments>
      <category>Databases, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/46641/about-socket-communication-in-Windows-service</guid>
      <title>about socket communication in Windows service</title>
      <link>https://quomon.com/46641/about-socket-communication-in-Windows-service</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 "service could not be started". please help how to make service to listen on the port please help.</description>
      <author>pvenkatesh2k4</author>
      <pubDate>Thu, 14 Feb 2008 07:20:31 GMT</pubDate>
      <comments>https://quomon.com/46641/about-socket-communication-in-Windows-service#comments</comments>
      <category>C#, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/46589/about-creating-a-service-using-C</guid>
      <title>about creating a service using C#</title>
      <link>https://quomon.com/46589/about-creating-a-service-using-C</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 07:28:19 GMT</pubDate>
      <comments>https://quomon.com/46589/about-creating-a-service-using-C#comments</comments>
      <category>.net, C#</category>
    </item>
    <item>
      <guid>https://quomon.com/46586/about-creating-a-service-using-C</guid>
      <title>about creating a service using C#</title>
      <link>https://quomon.com/46586/about-creating-a-service-using-C</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 07:13:14 GMT</pubDate>
      <comments>https://quomon.com/46586/about-creating-a-service-using-C#comments</comments>
      <category>C#, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/46557/Remove-cookies</guid>
      <title>Remove cookies</title>
      <link>https://quomon.com/46557/Remove-cookies</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>Tue, 22 Jan 2008 03:03:14 GMT</pubDate>
      <comments>https://quomon.com/46557/Remove-cookies#comments</comments>
      <category>.net, C#</category>
    </item>
    <item>
      <guid>https://quomon.com/46530/I-want-help-to-run-a-movie-which-needs-a-divocodec-file-please-help-How-do-i-play-the-movie</guid>
      <title>I want help to run a movie which needs a divocodec file,please help.How do i play the movie ?</title>
      <link>https://quomon.com/46530/I-want-help-to-run-a-movie-which-needs-a-divocodec-file-please-help-How-do-i-play-the-movie</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 11:22:45 GMT</pubDate>
      <comments>https://quomon.com/46530/I-want-help-to-run-a-movie-which-needs-a-divocodec-file-please-help-How-do-i-play-the-movie#comments</comments>
      <category>.net</category>
    </item>
    <item>
      <guid>https://quomon.com/46474/no-puedo-oir-musica</guid>
      <title>no puedo oir musica</title>
      <link>https://quomon.com/46474/no-puedo-oir-musica</link>
      <description>como le puedo hacer para escuchar musica en linea
&lt;br&gt;</description>
      <author>sandraisabeles</author>
      <pubDate>Thu, 03 Jan 2008 01:12:20 GMT</pubDate>
      <comments>https://quomon.com/46474/no-puedo-oir-musica#comments</comments>
      <category>internet, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/46295/Please-Help-My-windows-service-has-permissions-problems-running-a-macro-in-an-Excel-spreadsheet</guid>
      <title>Please Help!  My windows service has permissions problems running a macro in an Excel spreadsheet.</title>
      <link>https://quomon.com/46295/Please-Help-My-windows-service-has-permissions-problems-running-a-macro-in-an-Excel-spreadsheet</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 "Allow service to interact with Desktop", 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 16:48:14 GMT</pubDate>
      <comments>https://quomon.com/46295/Please-Help-My-windows-service-has-permissions-problems-running-a-macro-in-an-Excel-spreadsheet#comments</comments>
      <category>servers, .net, windows</category>
    </item>
    <item>
      <guid>https://quomon.com/45388/Custom-paging-control-for-asp-net-2</guid>
      <title>Custom paging control for asp.net 2?</title>
      <link>https://quomon.com/45388/Custom-paging-control-for-asp-net-2</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 16:51:58 GMT</pubDate>
      <comments>https://quomon.com/45388/Custom-paging-control-for-asp-net-2#comments</comments>
      <category>.net, C#, information technology, internet, web development, Websites</category>
    </item>
    <item>
      <guid>https://quomon.com/45378/how-to-verify-that-an-internet-connection-exists-from-a-windows-net-application</guid>
      <title>how to verify that an internet connection exists from a windows .net application?</title>
      <link>https://quomon.com/45378/how-to-verify-that-an-internet-connection-exists-from-a-windows-net-application</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 14:56:52 GMT</pubDate>
      <comments>https://quomon.com/45378/how-to-verify-that-an-internet-connection-exists-from-a-windows-net-application#comments</comments>
      <category>windows, internet, .net, C#, information technology, software development</category>
    </item>
    <item>
      <guid>https://quomon.com/45310/Can-I-create-a-masterpage-template-in-asp-net-for-usercontrols-as-well</guid>
      <title>Can I create a masterpage template in asp.net for usercontrols as well?</title>
      <link>https://quomon.com/45310/Can-I-create-a-masterpage-template-in-asp-net-for-usercontrols-as-well</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 08:11:09 GMT</pubDate>
      <comments>https://quomon.com/45310/Can-I-create-a-masterpage-template-in-asp-net-for-usercontrols-as-well#comments</comments>
      <category>template, .net, C#, internet, information technology, Web Design, web development, Websites</category>
    </item>
    <item>
      <guid>https://quomon.com/45257/how-to-create-a-windows-service-program</guid>
      <title>how to create a windows service program?</title>
      <link>https://quomon.com/45257/how-to-create-a-windows-service-program</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 14:20:00 GMT</pubDate>
      <comments>https://quomon.com/45257/how-to-create-a-windows-service-program#comments</comments>
      <category>windows, C#, .net, windows service</category>
    </item>
    <item>
      <guid>https://quomon.com/45240/Are-there-any-tools-to-convert-HTML-to-Flash</guid>
      <title>Are there any tools to convert HTML to Flash</title>
      <link>https://quomon.com/45240/Are-there-any-tools-to-convert-HTML-to-Flash</link>
      <description>Looking for tool to convert HTML to Flash (dynamically via API)</description>
      <author>iti114</author>
      <pubDate>Tue, 10 Jul 2007 18:20:14 GMT</pubDate>
      <comments>https://quomon.com/45240/Are-there-any-tools-to-convert-HTML-to-Flash#comments</comments>
      <category>html, .net</category>
    </item>
    <item>
      <guid>https://quomon.com/45214/From-a-windows-net-application-is-it-possible-to-detect-if-the-application-is-already-running</guid>
      <title>From a windows .net application is it possible to detect if the application is already running?</title>
      <link>https://quomon.com/45214/From-a-windows-net-application-is-it-possible-to-detect-if-the-application-is-already-running</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 17:06:24 GMT</pubDate>
      <comments>https://quomon.com/45214/From-a-windows-net-application-is-it-possible-to-detect-if-the-application-is-already-running#comments</comments>
      <category>windows, .net, information technology, C#</category>
    </item>
  </channel>
</rss>