different versions of output caching based on selected values of several dropdownlists

StackOverflow https://stackoverflow.com/questions/8041819

  •  23-02-2021
  •  | 
  •  

So this is about output caching, and I am trying to use <%@ OutputCache VaryByParam="">, how to realize this?

有帮助吗?

解决方案

VaryByParam refers to the query string parameters in the request url. So you would need to submit the dropdownlist values as part of the url query string.

You would probably need to use javascript to alter the request url since you would not know the selected values server side.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top