} function callback(data) { $("#result").text(data); }—>aspx页 代码如下:<% Response.Clear(); string str_name = Request["userobj"]; if (str_name == "xtyang") {
Response.Write("ok"); } else { Response.Write("no"); } Response.End(); %>