码迷,mamicode.com
首页 > Web开发 > 详细

ASP.NET ----ashx一般处理程序

时间:2014-10-13 13:09:19      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   文件   sp   div   

asp.net中的一般处理程序,文件后缀为ashx。

代码示例:

    /// <summary>
    /// login 的摘要说明
    /// </summary>
    public class login : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            //context.Response.ContentType = "text/plain";
            //context.Response.Write("Hello World");
            loginRequest(context);
        }

        private void loginRequest(HttpContext context)
        {
            string struser = context.Request.QueryString["user"].ToString();
            string strpwd = Tem.Utils.MD5Service.GetMD5(context.Request.QueryString["pwd"].ToString());

            int i = Tem.BLL.th_LoginUserManager.GetLoginUsers(struser, strpwd);

            context.Response.ContentType = "text/html";
            context.Response.Write(i.ToString());
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }

 

IIS添加对ashx文件的支持

网站目录下,打开“处理程序映射”,如下图:

bubuko.com,布布扣

指定本地目录

 

url访问,实例:http://localhost:90/login.ashx?user=&pwd=

ASP.NET ----ashx一般处理程序

标签:style   blog   http   color   os   ar   文件   sp   div   

原文地址:http://www.cnblogs.com/bmbh/p/4021645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!