Click here to Skip to main content
15,919,422 members

Comments by Member 11683406 (Top 15 by date)

Member 11683406 1-Jun-16 2:47am View    
Hi tadit in my page load event tenacyaddress field is identified . But static method having the problem
Member 11683406 1-Jun-16 2:42am View    
Hi Tadit my ajax script is in another page . Here is the flow of my page we have two pages and In first page we are using ajax request to sent which link the user clicked and in web method is in the second page . It will get the id and shows the value in the text box . so returning back the data to js wont be work on this situation
Member 11683406 31-May-16 12:52pm View    
Yes the ajax method is from another page
Member 11683406 31-May-16 7:51am View    
Hi Chill my ajax code is function send(propid) {
$.ajax({
type: "POST",
url: "Default.aspx/LookupUpdate",
data: '{id: "' + propid + " ,tb : 'TenancyAddress' }",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: OnSuccess,
failure: function (response) {
alert(response.d);
return false;
}
});
}
Member 11683406 31-May-16 7:48am View    
hi Tadit flow is we have two pages and In first page we are using ajax request to sent which link the user clicked and in web method is in the second page . It will get the id and shows the value in the text box . so returning back the data to js wont be work on this situation