Guest User

Guest User

  • Tech Writer
  • 10
  • 3.5k

mvc 4

Mar 20 2013 10:09 AM

        $.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)