Sending Emails Through Outlook using C# and VB.NET

Posted in Net 2.0 on April 16, 2008 by bimal4u

Please Refer this link

http://www.c-sharpcorner.com/UploadFile/casperboekhoudt/SendingEmailsThroughOutlook12052005000124AM/SendingEmailsThroughOutlook.aspx

Modifying Web.config using Web Site Administration Tool (WAT) in ASP 2.0

Posted in Net 2.0 on April 16, 2008 by bimal4u

Please refer this site

http://www.code101.com/Code101/DisplayArticle.aspx?cid=86

how to upload large file ?

Posted in Net 2.0 on April 16, 2008 by bimal4u

By default, ASP.NET permits only files that are 4,096 kilobytes (KB) (or 4 megabytes [MB]) or less to be uploaded to the Web server. To upload larger files, you must change the maxRequestLength parameter of the <httpRuntime> section in the Web.config file.

Note When the maxRequestLength attribute is set in the Machine.config file and then a request is posted (for example, a file upload) that exceeds the value of maxRequestLength, a custom error page cannot be displayed. Instead, Microsoft Internet Explorer will display a “Cannot find server or DNS” error message.

If you want to change this setting for all of the computer and not just this ASP.NET application, you must modify the Machine.config file.

By default, the <httpRuntime> element is set to the following parameters in the Machine.config file:

<httpRuntime
executionTimeout=”90″
maxRequestLength=”4096″
useFullyQualifiedRedirectUrl=”false”
minFreeThreads=”8″
minLocalRequestFreeThreads=”4″
appRequestQueueLimit=”100″
/>

how to Validate Your Data ?

Posted in Net 2.0 on April 16, 2008 by bimal4u

If want to know how to validate Your Data…..

Plese Refer this link…………

Here you can found everyting which is help to validate your data.

http://www.breakingpar.com/

 

 

 

Enter register key into the system

Posted in Uncategorized on July 19, 2007 by bimal4u

  Microsoft.Win32.RegistryKey ckey =
Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@”SYSTEM\CurrentControlSet\Services\service1″, true);
            if(ckey != null)
            {
                if(ckey.GetValue(“Type”) != null)
                {
                    ckey.SetValue(“Type”, ((int)ckey.GetValue(“Type”) | 256));
                }
            }