【多选题】You create an ASP.NET page that contains the following tag. Page Name You need to write code that will change the contents of the tag dynamically when the page is loaded. What are two possible ways t...
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";
【单选题】The process of a web server adding a TCP header to the contents of a web page, followed by adding an IP header and then adding a data link header and trailer is an example of what?______