Is there any way to call Web Method of Web Service from an HTML page using ONLY Java Script.
No Use of ajax call...
Provided that method accepts an string type parameter and also return string type data.
[WebMethod]
public string GetPassword(string userid)
{
return "Hello";
}