I m trying a auto complete functionality for a textbox , where I am sending a get request to a webmethod which is returning complete page content rather than actual data as shown below.
i am using following C# code, while my all other methods with Post request are working fine
[WebMethod]
[ScriptMethod(UseHttpGet=true,ResponseFormat=ResponseFormat.Json)]
public static string GetListOfUsers()
{
return "{'0701414001','0701414002'}";
}