I have a .aspx page with some Webmethods that I use for jQuery ajax calls.
[WebMethod]
public static string HelloWorld(string s) {
return "Hello"+ s;
}
And call this with Url: /ajax/Test.aspx/HelloWorld
I wonder if it is possible to route this method to another url like /ajax/helloworld/
?