使用jquery和ajax在sql server中插入数据?投掷错误?

时间:2014-06-05 09:55:58

标签: asp.net-ajax

使用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>                                                                            

0 个答案:

没有答案