码迷,mamicode.com
首页 > Windows程序 > 详细

C# ashx后台处理session错误

时间:2016-01-05 12:30:49      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

using DAL;
using Models;
using System.Web.SessionState;

namespace cleaner.ashx
{
    /// <summary>
    /// $codebehindclassname$ 的摘要说明
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    public class UserLogin : IHttpHandler, IRequiresSessionState
    {

        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            string str = "false";

            if (context.Session["Username"] != null)
            {
                context.Response.Redirect("backindex.aspx");
                context.Response.End();
            }

            string username = context.Request["username"];//接收账号

            if (!string.IsNullOrEmpty(username))
            {
                string pwd = context.Request["pwd"];//接收密码
                if (!string.IsNullOrEmpty(pwd))
                {
                    str = CheckNamePwd(username, pwd);
                }
            }
            context.Response.Write(str);
        }

 

C# ashx后台处理session错误

标签:

原文地址:http://www.cnblogs.com/demoC/p/5101750.html

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