摘要: 创建一个服务器控件,该控件包含呈现到母版页中的 ContentPlaceHolder 控件的文本、标记和其他服务器控件。<asp:Content ContentPlaceHolderID="string" EnableViewState="True|False" ID="string" runat="server"> Visible="True|False" <!-- child controls --></asp:Content>Content 控件是内容页 阅读全文
posted @ 2013-01-21 09:16 Patrick005 阅读(338) 评论(0) 推荐(0) 编辑
摘要: HtmlGenericControl类可以创建服务器端控件,以映射到相应的HTML元素,而不被.NET框架类所转换。比如<body><span>等。下面的例子就是利用HtmlGenericControl类动态创建Title元素的。例如: HtmlGenericControl hgc=new HtmlGenericControl();hgc.InnerText ="http://gaozhenyu.com.cn";或: PlaceHolder1.Controls.Add(new HtmlGenericControl("br")); 阅读全文
posted @ 2013-01-21 08:56 Patrick005 阅读(509) 评论(0) 推荐(1) 编辑