单元测试怎样设值到session 中
1个回答
展开全部
using System;
using System.Web;
using System.Web.SessionState;
//出来session需要加上命名空间:using System.Web.SessionState;和 IReadOnlySessionState
public class ChangePwd : IHttpHandler, IReadOnlySessionState
{
//如果处理程序将访问会话状态值,它必须实现 IRequiresSessionState 接口(不包含任何方法的标记接口)。
public void ProcessRequest (HttpContext context)
{
context.Response.ContentType = "text/plain";
OperUser ou = new OperUser();
if (ou.ChangeWsPassword(context.Session["ws_user"].ToString(),context.Request.QueryString["pwd"].ToString()))
{
context.Response.Write("true");
}
else
{
context.Response.Write("flase");
}
}
public bool IsReusable {
get {
return false;
}
}
}
-
using System.Web;
using System.Web.SessionState;
//出来session需要加上命名空间:using System.Web.SessionState;和 IReadOnlySessionState
public class ChangePwd : IHttpHandler, IReadOnlySessionState
{
//如果处理程序将访问会话状态值,它必须实现 IRequiresSessionState 接口(不包含任何方法的标记接口)。
public void ProcessRequest (HttpContext context)
{
context.Response.ContentType = "text/plain";
OperUser ou = new OperUser();
if (ou.ChangeWsPassword(context.Session["ws_user"].ToString(),context.Request.QueryString["pwd"].ToString()))
{
context.Response.Write("true");
}
else
{
context.Response.Write("flase");
}
}
public bool IsReusable {
get {
return false;
}
}
}
-
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询