摘要:
使用jquery调用handler文件中的方法,需要使用session,默认生成的文件中,不可以直接使用session。按照以下步骤,即可以通过session与其他的aspx页面的session进行数据交互。1,加入命名空间using System.Web.SessionState;2,在类的接口中添加IRequiresSessionState :public class ProjectInfo : IHttpHandler, IRequiresSessionState3,引用session的方法:HttpContext.Current.Session["testSession&qu 阅读全文