.NET Framework Essentials

 Rate It (3)

Revision number 2, Sunday, August 23, 2009 2:58:14 PM by mbanavige

Comments

Please update

where is the article content?

This is a blank Article. Please Update.

What is going on? Who is moderating this wiki site. If content is not present, then dont need to publish blank page..

No Article... Please Provide The Article..........

In This Section

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;

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

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

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

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.

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

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"

Shortcuts

Table of Contents

Top Wiki Contributors

(last 30 days)

  1. mbanavige (10)
  2. yrb.yogi (3)
  3. srinivaskotra (3)
  4. Babunareshnarra (2)
  5. rdmartin33 (2)
  6. Dungimon (1)
Microsoft Communities