What should you do?
You create a mobile Web Form. The mobile Web Form contains a mobile Calendar control named calDate. You need to capture the date that users choose from the Calendar control. What should you do?
What should you do?
You develop a Web application. Your application contains two settings in the Web.config file. You deploy your application to production. You need to modify the application settings in the production environment without manually editing the XML markup in the Web.config file. What should you do?
Which two actions should you perform?
You create a Web Form. The Web Form calls a method as part of its processing. The method takes a long time to process. In addition, the other Web Forms in the ASP.NET Web site are now taking longer to process. You need to decrease the page response times by executing the long running method in parallel to other requests. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
What should you do?
Your Web site uses custom Themes. Your Web site must support additional Themes based on the user’s company name. The company name is set when a user logs on to the Web site. The company’s Theme name is stored in a variable named ThemeName. You need to use this variable to dynamically set the Web site’s Theme. What should you do?
Which two code segments should you use?
You create a Web application for your company’s intranet. You want to enable users to customize their versions of the intranet home page. You create sections of content as Web Parts. You need to ensure that users can customize content at any time. Which two code segments should you use? (Each correct answer presents part of the solution. Choose two.)
Which control should you add to the personalized home page?
You use a series of Web Parts to create a personalized home page for a Web site. The Web site does not use a master page. You need to enable the Web Parts to communicate with one another. Which control should you add to the personalized home page?
What should you do?
You create a master page named Template.master. Template.master contains the following ContentPlaceHolder server controls.
<asp:contentplaceholder id=”area1″ runat=”server”/>
<asp:contentplaceholder id=”area2″ runat=”server”/>
You also create 10 Web Forms. The Web Forms reference Template.master as their master page. Each Web Form has the following Content controls that correspond to the ContentPlaceHolder controls in
Template.master.
<asp:Content ContentPlaceHolderID=”area1″ Runat=”Server”/> <asp:Content ContentPlaceHolderID=”area2″ Runat=”Server”/>
You need to configure the Web pages so that default content will be shown in the area2 ContentPlaceHolder control whenever a Web Form does not provide that content. What should you do?
Which code segment should you use?
You create a master page named Article.master. Article.master serves as the template for articles on your Web site. The master page uses the following page directives.
<%@ Master Language=”VB” CodeFile=”article.master.vb” Inherits=”article” %>
You need to create a content page that uses the master page as a template. In addition, you need to use a single master page for all devices that access the Web site. Which code segment should you use?
What should you do?
You create a personalized home page. You want to enable users to choose from a selection of daily headlines from different news providers. You create a series of custom user controls. Each control points to a different news provider. You need to add these controls to the personalized home page. What should you do?
Which two controls should you add to the EditorZone control?
You create a Web site. You add an EditorZone control to the home page on the Web site. You need to enable users to customize the size and location of the Web Parts on their home pages. Which two controls should you add to the EditorZone control? (Each correct answer presents part of the solution. Choose two.)