hi
i tried to use a simple AJAX call using jquery. my code is:
$.ajax
({
type:
"GET",url:
"MyMaster.Master/GeString",contentType:
"application/json; charset=utf-8",data:
"{}",dataType:
"json",success: AjaxSucceeded,
error: AjaxFailed
});
and the code behind is:
[
WebMethod] public static string GetString(){
return "hi";}