i want to retive data from database and set these retival data into textbox using ajax json
for updaing records
Refer below link and change the Label binding code with TextBox code.
Example:
success: function (response) { if (response.d != '') { var user = JSON.parse(response.d); $('#txtId').val(user.Id); $('#txtName').val(user.Name); }
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.