I\'m trying to call the webmethod fucntionality using AJAX but unable to get the appropriate results. I have googled my problem and found many solution but thos
Probably you need to add static to your method declaration as below
[WebMethod]
[ScriptMethod(UseHttpGet = true)]
public static string getUsername(string value)
{
return "True";
}
if this isn't the case, you could F12 the browser->network then click on the error message to see it briefly.
Concerning the reported issue,the problem with get request, try to make it post