공개 부분 클래스 AjaxQuery : System.Web.UI.Page
{
protected void Page_Load(객체 전송자, EventArgs e)
{
if (!IsPostBack)
{ 문자열 gettype = 요청["type"];
if (gettype=="text")
{
메시지 = (id == "1" && 이름 == "2") ? "ok符合条件": "죄송합니다불구합条件";
}
else if (gettype == "json")
{
목록
for (int i = 0; i {
학생 a = new Student();
a.이름 = "张三" i;
a.Age = i;
a.Sex = "男";
list.Add(a); }
메시지 = new JavaScriptSerializer().Serialize (목록);
}
else
{ }
Response.Write(messgage);
}
}
public struct Student
{
공개 문자열 이름;
공개 int 나이;
공개 문자열 성별;
}
}