多项选择题 You work as a Web Developer at Certkiller.com. You are in the process of creating a Webapplication using Microsoft ASP.NET 3.5. In order toimplement partial rendering on a page you add the following markup: <asp:ScriptManager ID="_scriptManager" runat="server"/> <asp:UpdatePanel ID="updatePanel1" runat="server"> <ContentTemplate> <asp:Label ID="label1" runat="server"/> <asp:Button ID="CKupdateButton" runat="server" Text="Update"/> </ContentTemplate> </asp:UpdatePanel> <asp:UpdatePanel ID="updatePanel2" runat="server"> <ContentTemplate> <asp:Label ID="label2" runat="server"/> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="CKupdateButton"/> </Triggers> </asp:UpdatePanel> You only want the content in the updatePanel2 control to be updated when the Button controlnamed _btnUpd is clicked. You need to configure the page to accomplish this goal of thecompany. What should you do?()
单项选择题 You work as a Web Developer at Certkiller.com. You are in the process of creating a Webapplication using Microsoft ASP.NET 3.5. An exception management framework is not used in the Web application. You need to ensure thatthe application log the unhandled exceptions automatically to the event log. You need to configurethe Web.config file to accomplish this. Identify the configuration that will assist you in thisscenario?()
多项选择题 You work as a Web Developer at Certkiller.com. You are in the process of creating a Webapplication using Microsoft ASP.NET 3.5. You host the Web application in Microsoft Internet Information Services (IIS) 6.0. You browse theapplication and receive the following error message: Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable.Please hit the "Refresh" button in your web browser to retry your request. You view the Application event log and discover the following message: It is not possible to run two different versions of ASP.NET in the same IIS process. Please use theIIS Administration Tool to reconfigure your server to run the application in a separate process. To ensure productivity you need to solve this problem as quick as possible. What should you do?()