You create an ASP.NET page that contains the following tag.  Page Name

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";

时间:2022-10-26 06:42:45 所属题库:MCTS(70-515)题库

相似题目