AutoCompleteExtender的問題

摘要:AutoCompleteExtender的問題

偶而有網友提及,當使用Web Services時,AutoCompleteExtender控件會發生拉不出視窗的情況,

甚至連繫結的Web Services Method都未曾進入,其原因是繫結至AutoCompleteExtender的

Web Service Method之參數名稱有規定,不能任意命名.

[WebMethod]
public string[] GetID(string strPre, int intCount)  //這是不行的,因為參數名不能任意命名

[WebMethod]

public string[] GetID(string prefixText, int count)  //這樣才行.

 

同理可證,例如DropDownExtender等函式都可能會有這類問題,猜想原因應該是為了

安全性,在使用JSON傳遞參數時,連帶比對了參數的名稱.