Webservice Session使用方法
例子如下:
[WebMethod(Description = "SMS", EnableSession = true)]
public string Hello()
{
return Session["adminid"].ToString();
}
例子如下:
[WebMethod(Description = "SMS", EnableSession = true)]
public string Hello()
{
return Session["adminid"].ToString();
}