Select from following answers:- HTML First , CacheControl later
- CacheControl First , HTML later
- Sequence doesn’t matter
- Can’t say
- All Above
CacheControl cannot be specified before HTML tag because we need to ensure whether to cache the request or not? And this must be determined before content sent to client.
<%
…
Response.CacheControl = value
…
%>
<HTML>…
Value in above code can be: Private, Public, No-cache or No-store.
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator