考题
You create a Web site. The Web site has many predefined roles and associated users that will be used for security purposes. You need to manage these roles and user accounts.Which tool should you use? ()A. the Microsoft .NET Framework Configuration toolB. the Code Access Security Policy toolC. the ASP.NET IIS Registration toolD. the Web Site Administration Tool
考题
You are the newly appointed system administrator at Certkiller.com. The previous administratorcreated a Microsoft ASP.NET application using Microsoft .NET Framework v3.5. You need to capture the timing and performance information of the application. Managementwants you to make sure that data is only accessible when a client is logged onto the Web servernot the individual Web pages. What should you do?()A、You should consider adding compilation debug="true" / to the Web.config file.B、You should consider adding compilation debug="false" urlLinePragmas="true" / to theWeb.config file.C、You should consider adding trace enabled="true" writeToDiagnosticsTrace="true"pageOutput="true" localOnly="true" / to the Web.config file.D、You should consider adding trace enabled="true" pageOutput="false" localOnly="true" / tothe Web.config file.
考题
You create a Microsoft ASP.NET Web application by using the Microsoft .NET Framework version 3.5. When you review the application performance counters, you discover that there is an unexpected increase in the value of the Application Restarts counter. You need to identify the reasons for this increase. What are three possible reasons that could cause this increase?()A、Restart of the Microsoft IIS 6.0 host. B、Restart of the Microsoft Windows Server 2003 that hosts the Web application. C、Addition of a new assembly in the Bin directory of the application. D、Addition of a code segment that requires recompilation to the ASP.NET Web application. E、Enabling of HTTP compression in the Microsoft IIS 6.0 manager for the application. F、Modification to the Web.config file in the system.web section for debugging the application.
考题
Certkiller.com has hired you as a system administrator for their network. The previousadministrator created a Microsoft ASP.NET Web application. Microsoft .NET Framework v3.5 wasused to create this application. You detect an unexpected increase in the value of the Application Restarts counter whilstmonitoring the application performance counters. You receive an instruction from management toidentify the reasons for the increase. What should you identify?()A、The increase occurred due to changes made to the Web.config file in the system.web sectionfor debugging the application.B、The increase occurred due to the Microsoft IIS 6.0 host being restarted.C、The increase occurred due to an additional code fragment that needs recompilation to theASP.NET Web application.D、The increase occurred due to the Microsoft Windows Server 2003 that hosts the Webapplication being restarted.E、The increase occurred due to an additional new assembly in the Bin directory of the application.F、The increase occurred due to HTTP compression being enabled in the Microsoft IIS 6.0manager for the application
考题
You create a Microsoft ASP.NET AJAX application by using the Microsoft .NET Framework version 3.5. You attach Microsoft Visual Studio 2008 debugger to the Microsoft Internet Explorer instance to debug the JavaScript code in the AJAX application. You need to ensure that the application displays the details of the client-side object on the debugger console. What should you do?()A、Use the Sys.Debug.fail method.B、Use the Sys.Debug.trace method.C、Use the Sys.Debug.assert method.D、Use the Sys.Debug.traceDump method.
考题
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You plan to deploy the application to a test server. You need to ensure that during the initial request to the application, the code-behind files for the Web pages are compiled. You also need to optimize the performance of the application. Which code fragment should you add to the Web.config file?()A、compilation debug="true" B、compilation debug="false" C、compilation debug="true" batch="true" D、compilation debug="false" batch="false"
考题
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. When you access the application in a Web browser, you receive the following error message: "Service Unavailable". You need to access the application successfully. What should you do?()A、Start Microsoft IIS 6.0. B、Start the Application pool. C、Set the .NET Framework version. D、Add the Web.config file for the application.
考题
Certkiller.com has employed you as a system administrator. You are in the process of creating anASP.NET AJAX application using .NET Framework v3.5. You receive an instruction from management to debug the JavaScript code in the application. Youthen attach Microsoft Visual Studio 2008 debugger to the Microsoft Internet Explorer instance. Youneed to make sure that the details of the client side object on the debugger console is displayedon the application. What should you do?()A、This can be achieved using the Sys.Debug.fail method.B、This can be achieved using the Sys.Debug.traceDump method.C、This can be achieved using the Sys.Debug.trace method.D、This can be achieved using the Sys.Debug.assert method.
考题
Certkiller.com has hired you as a Web Application Developer for their network. The previousadministrator created a Microsoft ASP.NET application using Microsoft .NET Framework v3.5. You check and discover that the application contains a DataSourceControl named CatDS1. ThisDataSourceControl is bound to a Microsoft SQL Server 2005 table. The primary key of the table isthe CatName column. The code below is written in the FormView control. (The line numbers isincluded for reference purposes) 01 02 Category: 03 04 05 DataSourceID="CatDS1" 06 DataTextField="CatName" 07 DataValueField="CatID" 08 Runat="server" / 09 10 You have to make sure that any modifications made to the CatID field is written to the database.You should therefore identify the code segment that has to be added in line 04. What should you identify?()A、Your best option would be to add the SelectedValue='%# Bind("CatName") %' codesegment.B、Your best option would be to add the SelectedValue='%# Bind("CatID") %' code segment.C、Your best option would be to add the SelectedValue='%# Eval("CatID") %' code segment.D、Your best option would be to add the SelectedValue='%# Eval("CatName") %' codesegment.
考题
You create a Web site. The Web site has many predefined roles and associated users that will be used for security purposes. You need to manage these roles and user accounts. Which tool should you use? ()A、the Microsoft .NET Framework Configuration toolB、the Code Access Security Policy toolC、the ASP.NET IIS Registration toolD、the Web Site Administration Tool
考题
You have a Microsoft ASP.NET Framework version 1.0 application. The application does not use any features that are deprecated in the Microsoft .NET Framework version 3.5. The application runs on Microsoft IIS 6.0. You need to configure the application to use the ASP.NET Framework version 3.5 without recompiling the application. What should you do?()A、Edit the ASP.NET runtime version in IIS 6.0. B、Edit the System.Web section handler version number in the machine.config file. C、Add the requiredRuntime configuration element to the Web.config file and set the version attribute to v3.5. D、Add the supportedRuntime configuration element in the Web.config file and set the version attribute to v3.5.
考题
Certkiller.com has employed you as a system administrator. Your job function encompassescreating an ASP.NET application for the network. You make use of Microsoft .NET Frameworkv3.5 to creaste the application. You receive a request from management to capture the timing and performance data of the newlycreated application. For security purposes you need to make sure that he data is only availablewhen a Certkiller user is logged on to the Web server and not on individual Web pages. What should you do?()A、You should consider adding trace enabled="true" writeToDiagnosticsTrace="true"pageOutput="true" localOnly="true" / to the Web.config file.B、You should consider adding compilation debug="false" urlLinePragmas="true" / to theWeb.config file.C、You should consider adding trace enabled="true" pageOutput="false" localOnly="true" / tothe Web.config file.D、You should consider adding compilation debug="true" / to the Web.config file.
考题
You have a Microsoft ASP.NET Framework version 1.0 application. The application does not use any | English | Chinese | Japan | Korean | - 106 - Test Information Co., Ltd. All rights reserved. features that are deprecated in the Microsoft .NET Framework version 3.5. The application runs on Microsoft IIS 6.0. You need to configure the application to use the ASP.NET Framework version 3.5 without recompiling the application. What should you do?()A、Edit the ASP.NET runtime version in IIS 6.0.B、Edit the System.Web section handler version number in the machine.config file.C、Add the requiredRuntime configuration element to the Web.config file and set the version attribute to v3.5.D、Add the supportedRuntime configuration element in the Web.config file and set the version attribute to v3.5.
考题
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application. You use the ClickOnce deployment methodology to distribute the application. You need to store application-specific data along with read/write permissions without requiring elevated permissions for the application. Where should you store the application data?()A、In isolated storage.B、On the database server.C、In the ClickOnce data directory.D、In the App.config file of the application.
考题
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: ’ runat="server"/ ’ runat="server" / 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.
考题
You create a Microsoft ASP.NET Web application by using the Microsoft .NET Framework version 3.5. When you review the application performance counters, you discover that there is an unexpected increase in the value of the Application Restarts counter. You need to identify the reasons for this increase. What are three possible reasons that could cause this increase?()A、Restart of the Microsoft IIS 6.0 host.B、Restart of the Microsoft Windows Server 2003 that hosts the Web application.C、Addition of a new assembly in the Bin directory of the application.D、Addition of a code segment that requires recompilation to the ASP.NET Web application.E、Enabling of HTTP compression in the Microsoft IIS 6.0 manager for the application.F、Modification to the Web.config file in the system.web section for debugging the application.
考题
You create a Microsoft ASP.NET Web application by using the Microsoft .NET Framework version 3.5. You use Windows Authentication for the application. You set up NTFS file system permissions for the Sales group to access a particular file. You discover that all the users are able to access the file. You need to ensure that only the Sales group users can access the file. What additional step should you perform?()A、Remove the rights from the ASP.NET user to the file. B、Remove the rights from the application pool identity to the file. C、Add the identity impersonate="true"/ section to the Web.config file. D、Add the authentication mode="[None]" section to the Web.config file.
考题
Certkiller.com has hired you as a system administrator for their network. You make use of .NETFramework v3.5 in order to create a Microsoft ASP.NET application. You decide to create a Web form. You add the subsequent code fragment to the Web form. ’ / The DataSource control named CKDataSource recovers the Quantity column values from a tablenamed Orders. You the create the rptData_ItemDataBound event handler using the subsequentcode fragment. (The line numbers is included for reference purposes) 1 protected void rept_b(object sender, RepeaterItemEventArgs e) 2 { 3 4 if(CKLbl != null) 5 if(int.Parse(CKLbl.Text) 10)6 CKLbl.ForeColor = Color.Red;7 } You receive an instruction from management to recover a reference to the lblQuantity Labelcontrol into a variable. The variable is named CKLbl. What should you do?()A、Your best option would be to insert Label CKLbl = e.Item.FindControl("lblQty") as Label at line4.B、Your best option would be to insert Label CKLbl = Page.FindControl("lblQty") as Label at line 4.C、Your best option would be to insert Label CKLbl = rptData.FindControl("lblQty") as Label at line4.D、Your best option would be to insert Label CKLbl = e.Item.Parent.FindControl("lblQty") as Labelat line 4
考题
You modify an existing Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You add a theme to the ASP.NET application. You need to apply the theme to override any settings of individual controls. What should you do?()A、In the Web.config file of the application,set the Theme attribute of the pages element to the name of the theme.B、In the Web.config file of the application,set the StyleSheetThemeattribute of the pages element to the name of the theme.C、Add a master page to the application. In the @Master directive,set the Theme attribute to the name of the theme.D、Add a master page to the application. In the @Master directive,set the StyleSheetTheme attribute to the name of the theme.
考题
多选题You create a Microsoft ASP.NET Web application by using the Microsoft .NET Framework version 3.5. When you review the application performance counters, you discover that there is an unexpected increase in the value of the Application Restarts counter. You need to identify the reasons for this increase. What are three possible reasons that could cause this increase?()ARestart of the Microsoft IIS 6.0 host.BRestart of the Microsoft Windows Server 2003 that hosts the Web application.CAddition of a new assembly in the Bin directory of the application.DAddition of a code segment that requires recompilation to the ASP.NET Web application.EEnabling of HTTP compression in the Microsoft IIS 6.0 manager for the application.FModification to the Web.config file in the system.web section for debugging the application.
考题
单选题Certkiller.com has employed you as a system administrator. You are in the process of creating anASP.NET AJAX application using .NET Framework v3.5. You receive an instruction from management to debug the JavaScript code in the application. Youthen attach Microsoft Visual Studio 2008 debugger to the Microsoft Internet Explorer instance. Youneed to make sure that the details of the client side object on the debugger console is displayedon the application. What should you do?()A
This can be achieved using the Sys.Debug.fail method.B
This can be achieved using the Sys.Debug.traceDump method.C
This can be achieved using the Sys.Debug.trace method.D
This can be achieved using the Sys.Debug.assert method.
考题
单选题Certkiller.com has employed you as a system administrator. Your job function encompassescreating an ASP.NET application for the network. You make use of Microsoft .NET Frameworkv3.5 to creaste the application. You receive a request from management to capture the timing and performance data of the newlycreated application. For security purposes you need to make sure that he data is only availablewhen a Certkiller user is logged on to the Web server and not on individual Web pages. What should you do?()A
You should consider adding trace enabled=true writeToDiagnosticsTrace=truepageOutput=true localOnly=true / to the Web.config file.B
You should consider adding compilation debug=false urlLinePragmas=true / to theWeb.config file.C
You should consider adding trace enabled=true pageOutput=false localOnly=true / tothe Web.config file.D
You should consider adding compilation debug=true / to the Web.config file.
考题
多选题Certkiller.com has hired you as a system administrator for their network. The previousadministrator created a Microsoft ASP.NET Web application. Microsoft .NET Framework v3.5 wasused to create this application. You detect an unexpected increase in the value of the Application Restarts counter whilstmonitoring the application performance counters. You receive an instruction from management toidentify the reasons for the increase. What should you identify?()AThe increase occurred due to changes made to the Web.config file in the system.web sectionfor debugging the application.BThe increase occurred due to the Microsoft IIS 6.0 host being restarted.CThe increase occurred due to an additional code fragment that needs recompilation to theASP.NET Web application.DThe increase occurred due to the Microsoft Windows Server 2003 that hosts the Webapplication being restarted.EThe increase occurred due to an additional new assembly in the Bin directory of the application.FThe increase occurred due to HTTP compression being enabled in the Microsoft IIS 6.0manager for the application
考题
单选题You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You create a Web form in the application by using the following code fragment: 01 02 protected void Button_Handler(object sender, EventArgs e) 03 { 04 // some long-processing operation. 05 } 06 07 A
AB
BC
CD
D
考题
单选题You are employed as the senior administrator at Certkiller.com. You make use of Microsoft .NETFramework v3.5 to create a Microsoft ASP.NET application. You make use of ASP.NET AJAX create a Web form. The code fragment below exists in the Webfrom. (The line numbers is included for reference purposes) 01 10 11 13 You make use of the initComponents function to create and start a user behavior. This userbehavior is named CKBehavior. You have to make sure that CKBehavior is attached to CKTextBoxA. You should determine the appropriate code segment you need to add in line 6 toaccomplish this. What should you identify?()A
Your best option would be to insert Sys.Component.create(CKBehavior, $get('CKTextBoxA'),null, null, null)B
Your best option would be to insert Sys.Component.create(CKBehavior, 'CKTextBoxA', null,null, null)C
Your best option would be to insert $create(CKBehavior, null, null, null, $get('CKTextBoxA'))D
Your best option would be to insert $create(CKBehavior, null, null, null, 'CKTextBoxA')
考题
单选题You are the newly appointed system administrator at Certkiller.com. You make use of Microsoft.NET Framework v3.5 to create a Microsoft ASP.NET application. You are responsible for a local instance of Microsoft SQL Server 2005 named CERTKILLER-SR02. CERTKILLER-SR02 hosts the ASP.NET Web application. CERTKILLER-SR02 makes useof Windows Authentication. You are in the process of planning the configuration of the membership providers as well as the role management providers. It is important that you install thedatabase elements for both the providers on CERTKILLER-SR02 from the command line. What should you do?()A
Your best option would be to run the aspnet_regsql.exe -E -S localhost -A mr command.B
Your best option would be to run the sqlcmd.exe -S localhost E command.C
Your best option would be to run the sqlmetal.exe /server:localhost command.D
Your best option would be to run the aspnet_regiis.exe -s localhost command.