我试过的代码:
Page1.aspx的:
id值为2
location.href = "Page2.aspx/Method1";
Page2.aspx:
public void Method1(string id)
{
}
我希望<{>>传递参数值 - id
2
Method1
Page2.aspx
Page1.aspx
来自Javascript
if(count != 0)
{
return self.fetchedResultController.sections.count;
// return 10;
}
else {
return 1;
}
。
答案 0 :(得分:1)
假设Method1在代码隐藏中声明如下:(more info)
[WebMethod]
public static void Method1(string id)
{
}
您是否尝试过此代码?
location.href = "Page2.aspx/Method1?id=2";