We are porting our old Webapp from WebForms to MVC Asp.net , I have creatain HttpHandlers on the old app used for basic reporting.
We were calling them directly i.e http://www.something.com/handler.ashx?ID=1 on button clicks.
Now I need to port the same functionality in MVC Asp.Net , coding the handler was the easy task but How do I cater the query string and route my request to the Handler ?
copied from http://forums.asp.net/t/1320309.aspx/1?How+to+use+a+custom+HttpHandler+in+MVC+