环境:Asp.Net 3.5,VS 2008,Windows XP
您好,我有一个用户控件(uc:StackUC),例如:
<fieldset>
<legend>blablabla</legend>
<%-- other fields --%>
<asp:PlaceHolder ID="contentHolder" runat="server"></asp:PlaceHolder>
<asp:Button runat="server"/>
</fieldset>
我的想法是在我的网页上使用,就像这样(由于大量的重复):
...
<uc:StackUC>
<label>specific content</label>
<%-- blablabla --%>
</uc:StackUC>
...
我认为它与模板化用户控件有关,但是,我找到的所有示例都没有预先定义的用户控件,并且旨在实现
<%#Container.Index %> (or any other property)
这对我没用。
提前致谢。
模板化用户控件的引用:http://leedale.wordpress.com/2007/08/11/creating-a-templated-user-control-with-aspnet-20/,http://msdn.microsoft.com/en-us/library/36574bf6(vs.71).aspx#Y456
答案 0 :(得分:0)
以下代码已简化。
用户控件ascx:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="BaseFormControl.ascx.cs"
Inherits="SOPR.CustomForms.BaseFormControl" %>
<fieldset class="fset1">
</fieldset>
这是我的用户控制代码隐藏:
public partial class BaseFormControl : System.Web.UI.UserControl
{
[TemplateContainer(typeof(ContentContainer))]
[PersistenceMode(PersistenceMode.InnerProperty)]
[TemplateInstance(TemplateInstance.Single)] //IMPORTANT, makes controls visible in page code-behind
public ITemplate Content { get; set; }
void Page_Init()
{
if (Content != null)
{
ContentContainer cc = new ContentContainer();
Content.InstantiateIn(cc);
contentHolder.Controls.Add(cc);
}
}
我在视图中的用法:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AddOperator.aspx.cs"
Inherits="SOPR.Cadastro.AddOperator" MasterPageFile="~/MasterPage.Master" %>
<asp:Content ContentPlaceHolderID="ContentPlaceHolder1" ID="maincont" runat="server" EnableViewState="true">
<uc:BaseFormControl ID="BaseFormControl1" runat="server">
<Content>
<asp:TextBox runat="server" CssClass="keytbcss" MaxLength="4" ID="keytb"
NewLine="false" />
</Content>
</uc:BaseFormControl>
这实际上是我的其他问题的结果的副本。