Hi,
I have written a sample code by using the ajax JSON callback method.I am pasting the code here. I got a correct alert value but unable to feed into textbox. I tried several types of method to assign a value into text box. but it assigns after the alert it
is cleared the value from text box.Can anyone help me please.
function ShowCurrency() {
$.ajax({
type: "POST",
url: "webform1.aspx/GetValue",
data: '{curcode: "' + $("#<%=txtcurcode.ClientID%>")[0].value + '" }',
contentType: "application/json; charset=utf-8",
& ...
Go to the complete details ...