我有一个在页面加载时填充的数据表:
DataTable dtWIPRoute;
然后我在同一个aspx页面上获得了一个webmethod来处理ajax调用:
[WebMethod]
public static string myWebMethod(string ID, int POS, string TXT, int OPOS)
{
//if(ID == "4" )
//{
// return "changed";
//}
//else
//{
// return "failed";
//}
return OPOS.ToString() + ',' + POS.ToString();
}
我如何将数据表暴露给web方法,因为我需要根据jquery返回的内容更改其中的数据。
干杯。