多选题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. 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?()AAdd a SiteMapDataSource control to the Web Form and bind the TreeView control to it.BAdd a SiteMapPath control to the Web Form and bind the TreeView control to it.CEmbed the site map XML within the SiteMap node of a Web.sitemap file.DEmbed the site map XML within the AppSettings node of a Web.config file.ESet the StartingNodeUrl property of the SiteMapDataSource control to ~/Marketing.aspx.FSet the SkipLinkText property of the SiteMapPath control to Sales.
多选题
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. 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?()
A
Add a SiteMapDataSource control to the Web Form and bind the TreeView control to it.
B
Add a SiteMapPath control to the Web Form and bind the TreeView control to it.
C
Embed the site map XML within the SiteMap node of a Web.sitemap file.
D
Embed the site map XML within the AppSettings node of a Web.config file.
E
Set the StartingNodeUrl property of the SiteMapDataSource control to ~/Marketing.aspx.
F
Set the SkipLinkText property of the SiteMapPath control to Sales.
参考解析
解析:
暂无解析
相关考题:
单选题You work as an application developer at Contoso.com. You use Microsoft .NET Framework 3.5 and Microsoft ADO.NET to develop an application. The database on the Microsoft SQL Server 2005 database has two tables that are displayed by using two SqlConnection objects in two different GridView controls. You want the tables to be displayed at the same time with the use a single SqlConnection object. What should you do?()A Create a bound connection by using the sp_getbindtoken and the sp_bindsession stored procedures.B Enable Multiple Active Result Sets (MARS) in the connection string of the application. C Create an exception handler for the connection-busy exception that is thrown on using a single SqlConnection object.D Run the two SqlDataReader objects by using a single SqlCommand object.
单选题患者,男性,45岁。搬抬重物后出现腰痛伴右下肢放射痛3天来院就诊,诊断为腰椎间盘突出症。检查时发现患者小腿外侧及趾的针刺觉减退。此患者可能受压的神经根是()A腰1B腰2C腰3D腰4E腰5
单选题Your network consists of a single Active Directory domain. The network contains a Terminal Server that runs Windows Server 2008, and client computers that run Windows Vista. All computers are members of the domain. You deploy an application by using the TS RemoteApp Manager. The Terminal Servers security layer is set to Negotiate. You need to ensure that domain users are not prompted for credentials when they access the application. What should you do?()AOn the server, modify the Password Policy settings in the local Group Policy.BOn the server, modify the Credential Delegation settings in the local Group Policy.COn all client computers, modify the Password Policy settings in the local Group Policy.DOn all client computers, modify the Credential Delegation settings in the local Group Policy.
单选题You are developing a client application that consumes a Windows Communication Foundation (WCF) service. The operation contract is as follows. [OperationContract] [FaultContract(typeof(SalesFault))] string GetSales(string saleId);() The service configuration file contains the following line in the serviceBehaviors section. A divide-by-zero exception is not being handled by the service. You need to ensure that the exception is caught in the client application. Which type of exception should the client catch?()ATimeoutExceptionBFaultExceptionCDivideByZeroExceptionDFaultExceptionSalesFault
多选题VOIP has been implemented at the main office of the Company network. Which two statements are true about voice packets in a LAN?()AVoice carrier stream utilizes Real-Time Transport Protocol (RTP) to carry the audio/media portion of the VoIP communication.BVoice traffic data flow involves large volumes of large packets.CBecause a packet loss involves a small amount of data, voice traffic is less affected by packet losses than traditional data traffic is.DVoice packets are encapsulated in TCP segments to allow for proper sequencing during delivery.EVoice packets are very sensitive to delay and jitter.
多选题你将为 Web 应用创建一个控件 ContosoUI。你需要增加这个控件到 Microsoft Visual Studio .NET 的工具栏中,你应该通过下面那两个操作完成?()A创建ContosoUI控件为Web控件库。B创建ContosoUI控件为Web用户控件。C在VisualStudio.NET工具栏中,浏览并选择ContosoUI.ascx。D在VisualStudio.NET工具栏中,浏览并选择ContosoUI.dll。
单选题关于协调性子宫收缩乏力,下列描述正确的是()A容易发生胎儿宫内窘迫B不宜静脉点滴催产素C产妇自觉持续性腹痛,无间歇D活跃期晚期可以灌肠刺激宫缩E子宫收缩有正常节律性、极性及对称性,仅收缩力弱
单选题You work in a company which uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. Now you get an order from your company CIO, you have to identify whether a database integrity check (DBCC CHECKDB) was run for a particular database. Which log file should you examine?()Alog.trc Bdefault.trc CERRORLOG DSQLAGENT
单选题As a senior administrator at Cer-tech .com, you manage a server named ERA1 that runs Windows Server2008. It has the Windows SharePoint Services (WSS) role installed in a standalone mode.You also manage another server called ERA2. For a big project, you install WSS role on ERA2. You indicate duringthe installation that the ERA2 must be the member of a WSS server farm. But you are unable to connect toERA1 in the WSS server farm. What should you do to configure both ERA1 and ERA2 in the WSS serverarm?()Areduce the Microsoft .NET Framework Trust Level to Low on both ERA1 and ERA2BReconfigure the Web Management Service on ERA1CSet the Microsoft .NET Framework Trust Level to High on both ERA1 and ERA2DUninstall the WSS on ERA1 and select the server farm mode while reinstalling it.ENone of the above
单选题You are using the ASP.NET membership APIs to manage user accounts for a Web site. The Web.config file contains the definition for the membership provider. After modifying the Web.config file to enable password recovery, you create a PasswordReset.aspx file.? You need to enable users to reset their passwords online. The new passwords must be sent to them by e-mail after they have logged on through the Login.aspx page. In addition, users must be required to answer their secret questions before resetting their passwords. Which code logic should you use?()AAdd a PasswordRecovery element to the PasswordReset.aspx file and configure it.BModify the Page_Load to set the Membership.EnablePasswordReset to True in the PasswordReset.aspx file.CAdd a ChangePassword element to the PasswordReset.aspx file and configure it.DModify the Login.aspx form to include a Required Field validator on the secret question answer text box. Then redirect users to the PasswordReset.aspx file.
单选题You are developing an ASP.NET Web application. You create a master page. The master page requires a region where you can add page-specific content by using theASP.NET page designer. You need to add a control to the master page to define the region. Which control should you add?()APlaceHolderBContentPlaceHolderCContentDSubstituition
单选题一女性患者,15岁骑车摔倒,左额部着地,当时昏迷,20min后清醒,自觉轻微头痛,四肢活动正常,次日头痛加重,呕吐1次,来院就诊,首先应检查()A头颅CTB脑电图C腰穿D头颅X线片E脑血管造影
单选题女性,32岁,孕3个月,因四肢关节肿痛3个月,面部红斑1个多月,脱发10天,咳嗽2天就诊。既往身体健康,曾自然流产3次。该孕妇的治疗方案是()A糖皮质激素B糖皮质激素+抗凝药物C糖皮质激素+甲氨蝶呤+氯醛D妇科会诊,行人工流产手术E可暂不行人工流产手术,予糖皮质激素+阿司匹林抗凝观察治疗,必要时再手术