ASP.NET中在一般处理程序中使用session的方法如下:
<%@ WebHandler Language="C#" Class="ChangePwd" %>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
}
}
}
处理session同时还有另一个接口:IReadOnlySessionState接口,用于指示Http处理程序,对Session有只读的权限,也是空接口,无需实现任何方法。
你在一般处理程序中值继承了只读的session接口。不能设置session的常用的session接口有:
IReadOnlySessionState和IRequiresSessionState
-----
System.Web.SessionState.IReadOnlySessionState为只读会话的接口
System.Web.SessionState.IRequiresSessionState 为可读可写会话的接口
你可以改成IRequiresSessionState 这个接口。
如果还是不行的话,你可以追问我。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)