I want a particular aspx page cached in the browser. I have valid reasons for having it as an ASPX page and I need the caching on the browser.
Now, on the server cache, I can vary the caching by parameter. Does the browser too take into account parameters while caching page responses?
E.g. Will the following two responses be saves as two different cache items on the browser?
http://mypage.com/page.aspx?Param=1
and
http://mypage.com/page.aspx?Param=2
Yes, browser will treat those urls as 2 different resources so it will cache them separately (in case cache headers indicates to do so).
You could easily test it using Fiddler.