在webService里面Session默认是不可用的,必须得开启Session才能使用,如需要在当前方法上启用Session [WebMethod(EnableSession = true)][WebMethod(EnableSession = true)] public string Login(string name) { Context.Session["name"] = name; return name; }
本文介绍在WebService中如何通过设置[WebMethod(EnableSession=true)]来启用Session,并展示了一个具体的示例方法,说明如何将数据存入Session。
在webService里面Session默认是不可用的,必须得开启Session才能使用,如需要在当前方法上启用Session [WebMethod(EnableSession = true)][WebMethod(EnableSession = true)] public string Login(string name) { Context.Session["name"] = name; return name; }

被折叠的 条评论
为什么被折叠?