1
Answer

mvc 4

Guest User

Guest User

11y
1.5k
1

        $.ajax({
            type: "POST",
            url: url,
            DataType: "json",
            UpdateTargetId: "tbldata",
            data: { postcode: postcode },
            success: function (data) {
                debugger;

               
                $('#tbldata').add(data);
                $('#divtabledata').show();

From the data. how to bind it is in VIEW(ASP.Net MVC 4)
Answers (1)