using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.SessionState;
namespace HighWay.WebSite.Handler
{
///
/// MainFrame 的摘要说明
///
public class MainFrame_ajax : IHttpHandler, IRequiresSessionState
{
public void ProcessRequest(HttpContext context)
{
string action_type = HttpContext.Current.Request.Form["action_type"];
//List _ListMeun = new List();
//TreeItem _TreeItem = new TreeItem();
string reString = string.Empty;
string CurrentGuid = string.Empty;
context.Response.ContentType = "text/plain";
context.Response.Write(reString);
context.Response.End();
}
public bool IsReusable
{
get
{
return false;
}
}
}
}