Write a directive to cache responses for a Web form for 30 seconds, storing different cache responses based on the value of the lstNames control.
Select Answer:
<%@ OutputCache Duration=”30” VaryByParam=”lstNames” %>
<%@ OutputCache Duration="60" VaryByParam="lstNames" Shared="True" %>
<%@ OutputCache Duration=”30” %>
|