PageMethod with Custom Handler
- by Mister Cook
I have a page based web method which works fine, using [WebMethod], i.e
[WebMethod]
public static void DoSomethingOnTheServer()
{
}
I also have a custom page handler to make SEO friendly URLs possible,
e.g
http://localhost/MySite/A_nice_url.ext = http://localhost/MySite/page.aspx?id=1
I am using Server.Transfer in my ProcessRequest handler…