[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
//ASP.NET AJAX を使用してスクリプトからこの Web サービスを呼び出せるようにするには、次のコメントをキャンセルしますライン。
[System.Web.Script.Services.ScriptService] //jquery を使用して WebService を呼び出す場合は、前の WebService のコメントを解除します。
public class WebService : System.Web.Services.WebService
{
public WebService ()
{
//設計されたコンポーネントを使用している場合は、次の行のコメントを解除します
//InitializeComponent();
}
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
[WebMethod]
public string GetWish(string value1, string value2, string value3, int value4)
{
return string .Format("{3} 年後に {0}、{1}、{2} を願っています", value1, value2, value3, value4);
[WebMethod]
public List< int>GetArray(int i)
{
List
list = new List();
while (i >= 0)
{
list.Add( i--);
}
戻りリスト;
}
[WebMethod]
public Class1 GetClass()
{
Class1 a = new Class1(); >a.ID = "1";
a.Value = "丑年も頑張ってください";
return a;
}
[WebMethod]
public DataSet GetDataSet( )
{
DataSet ds = new DataSet();
DataTable dt = new DataTable("Table1");
dt.Columns.Add("ID", Type.GetType("System. String"));
dt.Columns.Add("Value", Type.GetType("System.String"));
DataRow dr = dt.NewRow();
dr["ID" ] = "1" ;
dr["Value"] = "明けましておめでとうございます"
dt.Rows.Add(dr); "ID"] = " 2";
dr["Value"] = "よろしくお願いします";
ds.Tables.Add(dt); 🎜>return ds;
}
}
//カスタマイズされたクラス、2 つの属性のみ
public class Class1
{
public string ID { get;文字列値 { get ; set; }
3. JS の場合:
🎜> コードは次のとおりです:
4. 効果