ホームページ > 記事 > ウェブフロントエンド > Jquery で ajax を再カプセル化し、操作を簡素化する example_jquery
パブリック部分クラス AjaxQuery : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//データ模拟,仅提供参考
string message = string.Empty;
string id = Request["id"];
string name = Request["name"];
文字列 gettype = Request["type"];
if (gettype=="text")
{
message = (id == "1" && name == "2") ? "ok符合条件" : "sorry不符合条件";
}
else if (gettype == "json")
{
List
for (int i = 0; i {
学生 a = new Student();
a.名前 = "张三" i;
a.年齢 = i;
a.性別 = "男";
list.Add(a);
}
messagegage = new JavaScriptSerializer().Serialize (リスト);
}
else
{ }
Response.Write(message);
Response.End();
}
}
パブリック構造体 Student
{
public string Name;
public int Age;
public string Sex;
}
}