找考题网-背景图
单项选择题

Certkiller.com has employed you as a system administrator. Your job function encompassescreating an ASP.NET application for the network. You make use of Microsoft .NET Frameworkv3.5 to creaste the application. 
You receive a request from management to capture the timing and performance data of the newlycreated application. For security purposes you need to make sure that he data is only availablewhen a Certkiller user is logged on to the Web server and not on individual Web pages. 
What should you do?()

A.You should consider adding <trace enabled="true" writeToDiagnosticsTrace="true"pageOutput="true" localOnly="true" /> to the Web.config file.
B.You should consider adding <compilation debug="false" urlLinePragmas="true" /> to theWeb.config file.
C.You should consider adding <trace enabled="true" pageOutput="false" localOnly="true" /> tothe Web.config file.
D.You should consider adding <compilation debug="true" /> to the Web.config file.

热门试题

单项选择题You are the newly appointed system administrator at Certkiller.com. You are in the process ofcreating a Microsoft ASP.NET application using Microsoft .NET Framework v3.5.  The new application will make use of eleven themes. Certkiller clients will be permitted to selecttheir themes from the Web page. You need to make sure that the theme selected by a client isdisplayed when the client returns to the application. This should occur even when the client returnsto log on at a later date or from another workstation.  You should take cognizance of the fact that the application operates on different storage types andin different environments. Management wants you tp store the themes selected by the clients aswell as retrieving the required theme.  What should you do?()

A.This can be accomplished using the Response.Cookies collection in order to store the name ofthe theme that is selected by the client.
B.This can be accomplished by retrieving the required theme name from the Session object everytime the client visits a page.
C.This can be accomplished by retrieving the required theme name every time the client visits apage.
D.This can be accomplished by retrieving the required theme name from the Application objectevery time the client visits a page.