多项选择题
A.Add the following line of code to the TestUserControl.ascx.cs code-behind file. public string CityName { get { return "New York"; } }
B.Add the following line of code to the TestUserControl.ascx.cs code-behind file. protected readonly string CityName = "New York";
C.Add the following code segment to the TestPage.aspx.cs code-behind file. protected void Page_Load(object sender, EventArgs e) { string s = testControl.CityName; }
D.Add the following code segment to the TestPage.aspx.cs code-behind file. protected void Page_Load(object sender, EventArgs e) { string s = testControl.Attributes["CityName"]; }
单项选择题 YoucreateaWebpagenamedTestPage.aspxandausercontrolnamedcontainedinafilenamedTestUserControl.ascx.YouneedtodynamicallyaddTestUserControl.ascxtoTestPage.aspx.Whichcodesegmentshouldyouuse?()
单项选择题 You are implementing an ASP.NET application that will use session state in out-of-proc mode. You add the following code. You need to add an attribute to the Person class to ensure that you can save an instance to session state. Which attribute should you use?()
单项选择题 You are implementing an ASP.NET Web site. The site allows users to explicitly choose the display language for the sites Web pages. You create a Web page that contains a DropDownList named ddlLanguage, as shown in the following code segment. The site contains localized resources for all page content that must be translated into the language that is selected by the user. You need to add code to ensure that the page displays content in the selected language if the user selects a language in the drop-down list. Which code segment should you use?()