Which two actions should you perform?
You create a Web Form. The Web Form allows users to recover their passwords. You add a PasswordRecovery server control by using the following code segment.
<asp:PasswordRecovery runat="server"/>
You need to ensure that the server control generates a new password and sends it by e-mail to the users e?mail address. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
Which four actions should you perform?
You create a Web Form. The Web Form contains two Web Parts named CustomerPart and OrdersPart. CustomerPart contains a drop-down list of customers. OrdersPart contains a list of orders that a customer has placed. You need to create a static connection between CustomerPart and OrdersPart. When a user selects a customer from CustomerPart, OrdersPart must update. Which four actions should you perform? (Each correct answer presents part of the solution. Choose four.)
Which two code segments should you use?
You create a Web application for Domain.com’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 two actions should you perform?
You create a server control that inherits from WebControl. You need to enable the server control to emit markup for a new kind of mobile device. You must not alter the code in the server controls. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two)
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.)
Which two actions should you perform?
You create a Web Form that contains connected Web Parts. You write the following declaration in your Web Form.
<asp:WebPartConnection ID="WebPartConnection1"
ProviderID="customerPart"
ConsumerID="ordersPart" />
You need to ensure that your Web Part connection is valid. Which two actions should you perform?
(Each correct answer presents part of the solution. Choose two.)
Which three actions should you perform?
You are developing a Web application to display products. Products are displayed on different pages on your Web site. You want to create a user control to manage the display of products. You need a default visual implementation of the UI of the user control. In addition, you need to provide developers with the flexibility to change the layout and controls of the UI. Which three actions should you perform? (Each correct answer presents part of the solution. Choose three.)
Which two actions should you perform?
You create a control named ContosoUI for a Web application. You need to add the control to the toolbox of Microsoft Visual Studio .NET. Which two actions should you perform?
(Each correct answer presents part of the solution. Choose two.)
Which three actions should you perform?
You are developing an application that connects to a Microsoft SQL Server database using the SqlConnection object. Your connection objects are being pooled. As the pool fills up, connection requests are queued. Some connection requests are rejected. You need to ensure that the application releases connections back to the pool as soon as possible. Also, you need to decrease the likelihood that connection requests will be rejected. Which three actions should you perform?
(Each correct answer presents part of the solution. Choose three.)
Which three actions should you perform?
You create a Web Form that contains a TreeView control. The TreeView control allows users to navigate within the Marketing section of your Web site. The following XML defines the site map for your site.
<siteMapNode url="~default.aspx" title="Home" description="Site Home Page"> <siteMapNode url="Sales.aspx" title="Sales" description="Sales Home"> <siteMapNode url="SalesWest.aspx" title="West Region" description="Sales for the West Region" />
<siteMapNode url="SalesEast.aspx" title="East Region" description="Sales for the East Region" />
</siteMapNode>
<siteMapNode url="Marketing.aspx" title="Marketing" description="Marketing Home"> <siteMapNode url="MarketNational.aspx" title="National Campaign" description="National marketing campaign" />
<siteMapNode url="MarketMidwest.aspx" title="Midwest Campaign" description="Midwest region marketing campaign" /> <siteMapNode url="MarketSouth.aspx" title="South Campaign" description="South region marketing campaign" />
</siteMapNode></siteMapNode>
You need to bind the TreeView control to the site map data so that users can navigate only within the Marketing section. Which three actions should you perform? (Each correct answer presents part of the solution. Choose three.)