In MVC 3, I load a partial view into a div after submitting a GET request. Sine this is loaded into the div, the link to view isn’t contained in the address bar.
How can I include a link in that partial view so it can be accessed directly that includes all of the passed parameters?
So say your root url is:
http://www.example.com/home/indexyou can turn it intohttp://www.example.com/home/index#all=your&get=parameters&go=hereThen in your index view you run a javascript event on page load that looks as the hash and then loads your partialview the same way.
something like that, if you’re using jquery.