DRAG DROP
You are developing an ASP.NET MVC application in a web farm. The application has a page
that accepts a customer’s order, processes it, and then redirects the browser to a page
where the order is displayed along with the shipping information.
The order information should be available only to the page where the order is displayed.
You need to store state and configure the application.
What should you do? (To answer, drag the appropriate item to the correct location. Each
item may be used once, more than once, or not at all. You may need to drag the split bar
between panes or scroll to view content.)
You need to store state and configure the application
DRAG DROP
You are developing an ASP.NET MVC application in a web farm. The application has a page
that accepts a customer’s order, processes it, and then redirects the browser to a page
where the order is displayed along with the shipping information.
The order information should be available only to the page where the order is displayed.
You need to store state and configure the application.
What should you do? (To answer, drag the appropriate item to the correct location. Each
item may be used once, more than once, or not at all. You may need to drag the split bar
between panes or scroll to view content.)
Should be Inproc e ViewData
Disagreeing with Janis for the following reasons:
– data should only be available to one other screen, so use TempData so that it is destroyed after being read
– hosting in a web farm, so SQL server is the best option for storing state
That is to say, the answer provided by the site is correct
Why is this answer different from the answer on the same question here: http://www.aiotestking.com/microsoft/you-need-to-store-state-and-configure-the-application-4/ ?????
And how could Viewdata be a correct answer on SessionState mode, when there is only the options: OFF|InProc|StateServer|SQLServer|Custom. No Viewdata