Your ASP.NET application displays sales data on a page. You
want to improve performance by holding the page in memory on
the server for one hour. You want to ensure that the page is
flushed from memory after one hour, and that the page is
re-created when the next request for the page is received.
What should you do?
A . Initialize a new instance of the Cache class in the
Application.Start event handler.
B . Initialize a new instance of the Timer class in the
Page.Load event handler.
C . Set the Duration attribute of the OutputCache directive
in the page.
D . In the Web.config file, set the timeout attribute of the
sessionState element.
Answer Posted / siva
C Because entire page is stored in output cache. If u stored
in session not only maintain this page, but also sotred all
values in session.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Can I have a unique key as foreign key?
How do we sort the data from a dataset?
Explain how does asp page work?
What methods are fired during the page load? Init()
Explain the procedure to handle the process request using mhpm events fired? : asp.net mvc
What is use of Master Page in ASP.NET web pages?
How can you ensure a permanent cookie?
In Code-Behind class which kind of code (server or client) is found ?
How do you implement postback with a text box?
What are the contents of cookie?
Describe the events in the life cycle of a web application.
How does viewstate work?
Explain why it is useful to use mvc instead of webforms? : asp.net mvc
What is mta?
How can we communicate with each server in N-tier Architecture? and what are the methods?