2025-03-27 15:05:14 +08:00

37 lines
971 B
C#

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.SessionState;
namespace HighWay.WebSite.Handler
{
/// <summary>
/// MainFrame 的摘要说明
/// </summary>
public class MainFrame_ajax : IHttpHandler, IRequiresSessionState
{
public void ProcessRequest(HttpContext context)
{
string action_type = HttpContext.Current.Request.Form["action_type"];
//List<TreeItem> _ListMeun = new List<TreeItem>();
//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;
}
}
}
}