标签:
1.要在一般处理程序中获取其他页面的session值,需要引用名空间:
using System.Web.SessionState;
2.然后继承一个接口:IRequiresSessionState,如图:
public class Handler : IHttpHandler, IRequiresSessionState { ······ ······ ······ }
3.然后就可以获得session值了:
HttpContext context = new HttpContext();
string s =context.Session["Verifycode"].ToString();
标签:
原文地址:http://www.cnblogs.com/KTblog/p/4778204.html