2
我有以下webmethod,我想要修改現有Session變量的值,但是在webmethod中,只要我將該值分配給該會話變量,值就不會分配給它。如何修改asp.net webmethod中的會話變量
WEBMETHOD
[WebMethod(EnableSession = true)]
public static List<tblCustomerList> CustData(String id)
{
Int32 count=(Int32) HttpContext.Current.Session["pgnum"];
HttpContext.Current.Session["pgnum"] = count++;
DataGridEntities _dbContext = new DataGridEntities();
var filteredResult = _dbContext.tblCustomerLists.ToList();
return filteredResult;
}
你不應該使用++算,什麼都增加它的價值你的意思是不分配 – Devesh