A.bool isMember = Roles.GetUsersInRole("Administrators").Any() B.bool isMember = Membership.ValidateUser(User.Identity.Name, "Administrators") C.bool isMember = Roles.GetRolesForUser("Administrators").Any() D.bool isMember = User.IsInRole("Administrators")
A.this.hdr1.InnerHtml = "Text"; B.(hdr1.Parent as HtmlGenericControl).InnerText = "Text"; C.HtmlGenericControl h1 = this.FindControl("hdr1") as HtmlGenericControl;h1.InnerText = "Text"; D.HtmlGenericControl h1 = Parent.FindControl("hdr1") as HtmlGenericControl;h1.InnerText = "Text";
You are implementing an ASP.NET page that includes the following drop-down list. You need to dynamically add values to the end of the drop-down list. What should you do? ()
A.Add the following OnPreRender event handler to the asp:DropDownList B.Add the following OnPreRender event handler to the asp:DropDownList C.Add the following event handler to the page code-behind. D.Add the following event handler to the page code-behind.