87,992
社区成员
发帖
与我相关
我的任务
分享
$(function () {
$("#Button1").click(function () {
$.ajax({
type: "post",
url: "JQUERY.aspx/Inserts",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: "id=" + $("#TextBox1").val() + "&name=" + $("#TextBox2").val() ,
success: function (data) {
alert("ok");
},
error: function (xhr) {
alert("错误" + xhr.responseText);
}
});
$("#Button1").attr("disabled", true);
// return false;
});
});
</script>

[WebMethod]
public static string Inserts(string id,string name)
{
bool result = Manager.InsertDep(id,name);
if (result)
{
return "success";
}
else
{
return "fail";
}
}


data: '{"id":"' + $("#TextBox1").val() + '",name":"' + $("#TextBox2").val()+'"}' ,