私のwebmethodは次のようにデータを返していることがわかりました
{ "d":
 [
   {"id":"1","itemtxt":"Masters"},
   {"id":"2","itemtxt":"Transactions"},
   {"id":"3","itemtxt":"Misch. Reports"}
 ]
}
お気づきの方もいらっしゃると思いますが、配列の名前は「d」です。何故ですか ?何かルールはありますか?
参考までに、オブジェクトのリストを返します(List<webitem>)
public class webitem
{
    public webitem(string kid, string kval)
    {
        this.id = kid;
        this.itemtxt = kval;
    }
    public string id { get; set;  }
    public string itemtxt { get; set; }
}
この「d」はどういう意味ですか?Webメソッドから送信するデータはすべて同じですか?または、データ型/クラスタイプに応じて変更されますか?
編集
これがwebmethodです
[WebMethod]
public  List<webitem> GetSubModules(string key)
{
    string s = " order by smid";
    if (key != null)
        s = " where moduleid=" + key + s;
    return Utility.GetDDLVal("Select smid id,smname itemtxt from m_submodules "+s, null, null);
}