当前位置:网站首页 > 技术博客 > 正文

asx文件怎么打开



<%@ WebHandler Language="C#" Class="AjaxHandler" %> using System; using System.Web; public class AjaxHandler : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; string Cmd = context.Request["cmd"];//接收方法名参数 if (!string.IsNullOrEmpty(Cmd)) { System.Reflection.MethodInfo Method = this.GetType().GetMethod(Cmd, System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);//通过反射机制,直接对应到相应的方法 if (Method != null) { Method.Invoke(this, new object[] { context }); } } else { context.Response.Redirect("~/Login.aspx"); } } void DelContents(HttpContext context) { string strGuid = context.Request["Guid"];//接收参数 context.Response.Write("OK"); } public bool IsReusable { get { return false; } } }

版权声明


相关文章:

  • 单元测试是功能测试吗2024-11-28 21:30:05
  • 程序员接单网站2024-11-28 21:30:05
  • 汇编中移位指令2024-11-28 21:30:05
  • 数字图像处理实践2024-11-28 21:30:05
  • ldconfig命令怎么用2024-11-28 21:30:05
  • java怎么调用jframe窗口2024-11-28 21:30:05
  • json.cpp2024-11-28 21:30:05
  • linux发行版本有哪些?2024-11-28 21:30:05
  • python虚拟环境 windows环境搭建2024-11-28 21:30:05
  • java多线程编程实例2024-11-28 21:30:05