show/hide this revision's text 2 corrected code

Usage of the ASHX file type:
If you want to just output some basic html or xml without going through the page event handlers then you can implement the HttpModule in a simple fashion

Name the page as SomeHandlerPage.ashx and just put the below code (just one line) in it

<% @ 

<%@ webhandler language="C#" class="MyNamespace.MyHandler" > // put %before the >

Then the code file

using System;
using System.IO;
using System.Web;

namespace MyNamespace
{
    public class MyHandler: IHttpHandler
    {
    	public void ProcessRequest (HttpContext context)
    	{   
    		context.Response.ContentType = "text/xml";
    		string myString = SomeLibrary.SomeClass.SomeMethod();
    		context.Response.Write(myString);
    	}

    	public bool IsReusable
    	{
    		get { return true; }
    	}
    }
}
show/hide this revision's text 1

Usage of the ASHX file type:
If you want to just output some basic html or xml without going through the page event handlers then you can implement the HttpModule in a simple fashion

Name the page as SomeHandlerPage.ashx and just put the below code (just one line) in it

<% @ webhandler language="C#" class="MyNamespace.MyHandler" > // put % before the >

Then the code file

using System;
using System.IO;
using System.Web;

namespace MyNamespace
{
    public class MyHandler: IHttpHandler
    {
    	public void ProcessRequest (HttpContext context)
    	{   
    		context.Response.ContentType = "text/xml";
    		string myString = SomeLibrary.SomeClass.SomeMethod();
    		context.Response.Write(myString);
    	}

    	public bool IsReusable
    	{
    		get { return true; }
    	}
    }
}
    Post Made Community Wiki by Community