Is browser caching used in URL parameters? (ASPX page)

I want a specific aspx page to be cached in the browser. I have good reason to have it as an ASPX page, and I need browser caching.

Now, in the server cache, I can change the cache parameter by parameter. Does the browser affect credentials when caching responses to pages?

eg. Will the following two responses be saved as two different cache elements in the browser ? http://mypage.com/page.aspx?Param=1 and also http://mypage.com/page.aspx?Param=2

+5
source share
2 answers

, URL , ( , ).

, Fiddler.

+5

2: GET , , , , , , , ,

<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="CACHE">

, .

:

, . , , -, ByParam = "param":

<%@ OutputCache Duration="60" VaryByParam="Param" %>

" ", . , . , * :

<%@ OutputCache Duration="60" VaryByParam="*" %>

: http://msdn.microsoft.com/en-us/library/y96218s9.aspx

: . , .

+2

All Articles