In order to prevent a browser from caching a page which of these xstatements should be written?
AResponse.Cache.SetNoServerCaching();
BResponse.Cache.SetNoStore();
CResponse.Cache.SetNoCaching();
DNone of these
Correct answer
B. Response.Cache.SetNoStore();
Explanation
The correct answer is Response.Cache.SetNoStore();.