public void ProcessRequest(HttpContext context)
{
context.Response.Cache.SetNoStore();
context.Response.Clear();
context.Response.ContentType = "text/xml";
//you code...
context.Response.Write(TreeView1.GetXml());
}
public void ProcessRequest(HttpContext context)
{
context.Response.Cache.SetNoStore();
context.Response.Clear();
context.Response.ContentType = "text/xml";
//you code...
context.Response.Write(TreeView1.GetXml());
}