0
有沒有一種方法,我可以通過查詢字符串參數去PageMethods?我有這個要求,因爲在AjaxMethod中,我使用了一些依賴於特定查詢字符串的類。
如果我使用Asp.Net的ScriptManager,PageMethods有沒有辦法通過從JavaScript以Ajax的Web方法的查詢字符串PARAM?如何將QueryString參數傳遞給PageMethods?
例如:我有訪問查詢帕拉姆如下所示。
[WebMethod(true)]
public static string AjaxMethod(string name)
{
string Id = HttpContext.Current.Request.QueryString["SomeID"];
return message + " " + name;
}
但這不會HttpContext.Current.Request設定值。查詢字符串[「SomeID」] – Amitabh 2010-02-24 15:27:17
看到我的編輯本;) – 2010-02-24 15:29:03