标签:
1、using System.Web.SessionState;
2、实现接口IRequiresSessionState
public class Handler : IHttpHandler,IRequiresSessionState{
string code = context.Session["code"].ToString();
}
ashx中使用session
原文地址:http://www.cnblogs.com/jiduoduo/p/4487484.html