i have an asp.net-mvc site and one of the pages is
http://www.mysite.com/Report
users can add client side filtering which generates urls like this:
http://www.mysite.com/Report?Region=US
i want to take a link like this:
http://www.mysite.com/MyLastReport
and have a controller action that mimics as if a person added some parameters to the URL like this:
http://www.mysite.com/Report?Region=US
as my server side code uses:
Request.Params[]
to filter my queries and i want to use the same code path to get the results as if the URL had these parameters on the client side.
also, is there anyway to literally do a redirect of the URL from the server side so i actually change the URL in the browser to:
http://www.mysite.com/Report?Region=US