使用jquery和ajax在sql server中插入数据。但我得到的错误就像 [object xmlhttprequest]。我使用asp.net来使用ajax和jquery插入数据 下面是我的代码:
<script type ="text/javascript" >
$(document).ready(function () {
$('#btnClose').click(function () {
var name = $('#txtsname').val();
var tot = $('#txttotal').val();
$.ajax({
url: 'JqueryAjax.aspx/InsertData',
type: 'POST',
dataType: "json",
processData: false,
contentType: "application/json; charset=utf-8",
data: "{'stname':'" + name +"','totalmarks':'" + tot + "'}",
success: function (data) {
alert('Inserted Susccessfully');
},
error: function (xhr, status, error,data) {
alert(xhr);
alert('Not inserted');
},
});
});
});
</script>