I'm having a problem with ASP.NET MVC 1.0.
The first time I access a View "Products", its ActionResult method is called without a problem (I used a breakpoint to see it).
But, if I access a View "ProductsOrders", for example, and try to go back to "Products" by pressing browser go back button, the "Products" ActionResult is NOT accessed, just its javascript file.
Why can I only access the "Products" the javascript file when I go back but the ActionResult don't?? Shouldn't the Action be called again as well?
Thanks!
Regards