.NET Framework Essentials
Revision number 2, Sunday, August 23, 2009 2:58:14 PM by mbanavige
You must Login to comment.
|
Sun, Aug 9, 2009 3:45 PM
by Suthish nair
|
Please update
|
|
Fri, Aug 14, 2009 8:01 AM
by csharppointer
|
where is the article content?
|
|
Tue, Aug 18, 2009 6:57 AM
by meetu choudhary
|
This is a blank Article. Please Update.
|
|
Wed, Aug 19, 2009 3:26 PM
by syed.tayyab.ali
|
What is going on? Who is moderating this wiki site.
If content is not present, then dont need to publish blank page..
|
|
Thu, Oct 29, 2009 1:12 AM
by yrb.yogi
|
No Article...
Please Provide The Article..........
|
Revision #5
Sun, Aug 23, 2009 2:59 PM
by mbanavige
|
FtpWebRequest
FtpWebRequest The FtpWebRequest class enables you to programatically create FTP connections to FTP Servers and transfer files. If you are interested in using the FtpWebRequest class to upload files to a server,here is a code sample: FtpWebRequest ftpRequest;
|
Revision #7
Sun, Aug 23, 2009 2:59 PM
by mbanavige
|
HttpWebRequest
HttpWebRequest The HttpWebRequest class allows you to programatically make web requests against an HTTP server. This code shows how toread a file's content from a remote webserver using the HttpWebRequest class. Visual Basic: If Not (IsPostBack) Then Try
|
Revision #2
Sun, Aug 23, 2009 3:07 PM
by mbanavige
|
Http Handlers to handle Images
Hi,In this article i am going to create an http Handler which is used to resize my images and display it .What are HTTP Handlers?HTTP handlers are the .NET components that implement the System.Web.IHttpHandler interface, they can act as a target for the incoming
|
Revision #2
Sun, Aug 23, 2009 3:54 PM
by mbanavige
|
Logging Errors and Exceptions in ASP.NET 2.0
In this article i am going to use simple class which use to write error and exceptions occured in your asp.net application in a text file format. Below i have created a class Common in which there is function WriteToEventLog which accepts Exception as parameter
|
Revision #2
Sat, Sep 5, 2009 7:41 AM
by wildstrawberry
|
Reflection
Reflection is the ability of the .NET framework to gather information (metadata) about assemblies, modules and types at runtime. It allows you also to dynamically create instances of types, invoke methods and access fields, properties and attributes.
|
Revision #2
Sun, Sep 13, 2009 10:16 AM
by mbanavige
|
Custom HTTP Module
Before starting have a look in the Web.config in the locationC:\Windows\Microsoft.NET\Framework\versionnumber\CONFIG\Web.configYou can see the existing HTTPModules in the frameworksystem.web> httpModules> add name="OutputCache" type="System
|
New
Tue, Nov 3, 2009 7:15 PM
by arjit.malviya
|
Send email with smtp authentication using ASP.NET 3.5
Following Codes demonstrates how to send an email with SMTP Authentication using ASP.NET 3.5 using System.Net.Mail MailMessage msgMail = new MailMessage(); MailMessage myMessage = new MailMessage(); myMessage.From = new MailAddress("sender's email"
|