Certkiller .com‘s e-Commerce Web application contains a page named Products.aspx that uses data source and data-bound server controls. Customers use the server controls to search for products. The Products.aspx page does not have an associated code-behind file. You need to convert the Products.aspx page to a user control so that its functionality can be reused on other pages.What should you do?()
A.Move the Products.aspx page to the App_Code folder.
B.Create a code-behind file for the Products.aspx page.
C.Rename the Products.aspx page to Products.ascx..
D.Remove all server controls from the Products.aspx page.
E.Replace the Page directive with a Control directive.
第1题:
Certkiller .com has asked you to develop an application that displays the properties for all Certkiller.com‘s network drives.The information generated by this application will be utilized by Certkiller .com‘s network administrators to verify client setups.You need to ensure that these requirements are fully satisfied.What should you do?()
A.
B.
C.
D.
第2题:
You are developing a product search page named Search.aspx for Web application that will be integrated into Certkiller .com's existing e-Commerce Web site. The Search.aspx page allows customers search for products that match specific criteria. Once a product is located, you want an image of the product to be displayed. You want to use an Image control to display the image. You want to configure the Image control to display a description of the image if the image cannot be displayed in the customer's Web browser. What should you do?()
第3题:
Your company has an internal Web application that uses a self-signed SSL certificate. The company has an internal certification authority (CA) with autoenrollment.When users attempt to start the Web application, Internet Explorer displays an error message that recommends closing the Web page rather than continuing to the application. You need to ensure that Internet Explorer does not display the error message. What should you do?()
第4题:
You work as an application developer at Certkiller .com. You are developing a collection class named ClientCollection, which is to be used for storing the names of Certkiller .com’s clients that are situated in various geographical areas. These client names are represented by the Client class. You are planning to create a method named SortClients in the ClientCollection class to arrange Client objects in ascending order. You need to ensure that the appropriate interface is implemented by the Client class to allow sorting.What interface should be used?()
第5题:
Your network contains an Active Directory domain named contoso.com. The domain contains a server named Server1. The Active Directory Federation Services (AD FS) role is installed on Server1. Contoso.com is defined as an account store. A partner company has a Web-based application that uses AD FS authentication. The partner company plans to provide users from contoso.com access to the Web application. You need to configure AD FS on contoso.com to allow contoso.com users to be authenticated by the partner company. What should you create on Server1()
第6题:
You work as a Web Developer at Certkiller.com. You make use of Microsoft ASP.NET 3.5 tocreate a Web application. The Certkiller.com network contains a test server named CERTKILLER-SR01. You deploy theapplication to CERTKILLER-SR01 and enable debugging. The application is hosted in MicrosoftInternet Information Services (IIS) 6.0. The application pool makes use of Network Serviceidentity. You need to determine a way to configure the environment in order to permit you to debug theapplication from your development computer. What should you do?()
第7题:
Configure the SqlMembershipProvider in the web.config file.
Configure the SqlProfileProvider in the web.config file.
Create an ASP.NET page that contains a default CreateUserWizard control to create a new user account.
Create an ASP.NET page that contains a custom form that collects the user information and then uses the Membership.CreateUser method to create a new user account.
第8题:
Dnscmd.
Ntdsutil.
Ipconfig
Dnsutil
All of the above
第9题:
Your best option would be to insert Page.RegisterRequiresPostBack(this)
Your best option would be to insert Page.RegisterRequiresControlState(this)
Your best option would be to insert Page.UnregisterRequiresControlState(this)
Your best option would be to insert Page.RegisterStartupScript(KingShare,server)
第10题:
a new application
a resource partner
an account partner
an organization claim
第11题:
Set the AutoPostBack property to True and the CausesValidation property to False.
Set the AutoPostBack property to False and the CausesValidation property to True.
Set the AutoPostBack property to True and the CausesValidation property to True.
Set the AutoPostBack property to False and the CausesValidation property to False.
第12题:
The output will be FormsUser.
The output will be Certkiller/RAllen.
The output will be Certkiller/Anonymous.
The output will be Certkiller/WebApp
第13题:
You develop a Web application that contains two master pages. You need to dynamically set the master page when a user views pages in the application. What should you do? ()
第14题:
You work as a Web Developer at Certkiller.com. You are in the process of creating a Webapplication using Microsoft ASP.NET 3.5. The configuration below exists in the Web.config file:
第15题:
You recently developed a Web application that accesses an external Web service to retrieve current exchange rates for Certkiller .com's e-Commerce Web site. The Web service converts USD prices to the customer's local currency. You have stored the URL to the external Web service's endpoint in the section of the Web.config file. The Web application has been successfully deployed to a Certkiller .com Web server named Certkiller -SR14. A few months later the vendor of the Web service changes the port that is used to access the Web service. You need to update the section of the Web application's Web.config file from Certkiller -WS528. You need to ensure that your solution has a minimal impact on customers that may be connected to the e-Commerce Web site. What should you do?()
第16题:
You are developing a page named Process.aspx in a shopping cart Web application that will be integrated into Certkiller .com's existing e-Commerce Web site. The Process.aspx page allows customers to pay for purchases using their credit cards. The Process.aspx page contains a Button control that confirms the customer's payment and calls an external Web service that charges the customer's credit card. You must implement confirmation and prevent postback unless the customer confirms payment. What should you do?()
第17题:
You are developing a Web application. The Web application restricts access to an administrative page. The Web application uses the following code segment to protect the page.if (Page.User.Identity.Name != @"CONTOSO/Administrator") { the page, you are redirected to Login.aspx. You discover that the User.Identity.Name property is not being correctly populated. You need to ensure that you can access the page when you are logged on as Administrator. Which two actions should you perform? ()
第18题:
A
B
C
D
第19题:
You should consider adding AddHandler lstLanguages.SelectedIndexChanged, AddressOfBindData to the constructor of the page.
You should consider adding AddHandler Me.Init, AddressOf BindData to the constructor of thepage.
You should consider adding AddHandler Me.PreRender, AddressOf BindData to theconstructor of the page.
You should consider adding AddHandler lstLanguages.PreRender, AddressOf BindData to theconstructor of the page.
第20题:
Use RangeValidator.
Use RegularExpressionValidator
Use RequiredValidator
Use CompareValidator
Use RequiredFieldValidator
第21题:
You should use the page directive: <%@ Page StyleSheetTheme=App_Themes.Dark/>
You should use the page directive: <%@ Page Theme=App_Themes.Dark/>
You should use the page directive: <%@ Page Theme=Dark/>
You should use the page directive: <%@ Page StyleSheetTheme=Dark/>
第22题:
Use the ServiceController class.
Use the ServiceBase class.
Use the ServiceProcessInstaller class.
Use the ServiceInstaller class.
第23题:
Move the Products.aspx page to the App_Code folder.
Create a code-behind file for the Products.aspx page.
Rename the Products.aspx page to Products.ascx.
Remove all server controls from the Products.aspx page.
Replace the Page directive with a Control directive.