URL rewriting, help required
I need some help here. For a web application I needed to use URL rewriting to create some nice easy to remember addresses.
Everything's fine except for some controls. I have on this page a Search textbox, so the user can enter a text and I send him to a search results page.
Very trivial, but with URL rewriting, according to this excellent article, you need to override the form tag to make things working properly.
So I used the assembly provided with the article, and actually only the method GET works. The POST method don't fire any events and send me back a 405 error.
I would be happy with the GET method, but of course this send all data as a query string, destroying all the efforts to make the URL nice and tidy.
Anyone has a solution ?