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

You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. The application resides on a server named ContosoTest that runs Microsoft IIS 5.0. 
You use a computer named ContosoDev to log on to the Contoso.com domain with an account named ContosoUser. 
The ContosoTest and ContosoDev servers are members of the Contoso.com domain. You need to set up the appropriate permission for remote debugging. 
What should you do?()

A.Set the Remote Debugging Monitor to use Windows Authentication. 
B.Add the ContosoUser account to the domain Administrators group.
C.Add the ContosoUser account to the local Administrators group on the ContosoTest server. 
D.Change the ASP.NET worker process on the ContosoTest server to run as the local Administrator account.

热门试题

单项选择题You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You create a Web page to display photos and captions. The caption of each photo in the database can be modified by using the application. You write the following code fragment:   <asp:FormView DataSourceID= ObjectDataSource1  DataKeyNames= PhotoID  runat= server >   <EditItemTemplate>   <asp:TextBox Text=’<%# Bind( Caption ) %>’ runat= server >   <asp:Button Text= Update  CommandName= Update  runat= server >   <asp:Button Text= Cancel  CommandName= Cancel  runat= server >  < EditItemTemplate>  <ItemTemplate>   <asp:Label Text=’<%# Eval( Caption ) %>’ runat= server   >   <asp:Button Text= Edit  CommandName= Edit  runat= server >   < ItemTemplate>   < asp:FormView>    When you access the Web page, the application throws an error.  You need to ensure that the application successfully updates each caption and stores it in the database.  What should you do?()

A.Add the ID attribute to the Label control. 
B.Add the ID attribute to the TextBox control. 
C.Use the Bind function for the Label control instead of the Eval function. 
D.Use the Eval function for the TextBox control instead of the Bind function.