访问模板化用户控件ASP.NET中的子控件

本文关键字:控件 NET ASP 访问 用户 | 更新日期: 2023-09-27 18:04:15

以下代码简化:

用户控件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)]
        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>

我试图访问代码背后的"keytb"控件,但它就像它不存在(就像使用一个不存在的变量)。什么好主意吗?

提前感谢。

解决方案 --------------------------
我发现了一个很好的解决方案,只需将[TemplateInstance(TemplateInstance. single)]添加到用户控件的ITemplate属性中,就可以看到一切。我现在可以像使用普通的页面控件一样使用它了。

public partial class BaseFormControl : System.Web.UI.UserControl
{

[TemplateContainer(typeof(ContentContainer))]
[PersistenceMode(PersistenceMode.InnerProperty)]
[TemplateInstance(TemplateInstance.Single)]
public ITemplate Content { get; set; }
...

访问模板化用户控件ASP.NET中的子控件

解决方案 --------------------------
我发现了一个很好的解决方案,只需将[TemplateInstance(TemplateInstance. single)]添加到用户控件的ITemplate属性中,就可以看到一切。我现在可以像使用普通的页面控件一样使用它了。

public partial class BaseFormControl : System.Web.UI.UserControl
{

[TemplateContainer(typeof(ContentContainer))]
[PersistenceMode(PersistenceMode.InnerProperty)]
[TemplateInstance(TemplateInstance.Single)]
public ITemplate Content { get; set; }
...

当您在模板中编写控件时,您正在给它一个内容将如何的示例。想象一下,你在一个模板中给出一个网格的内容,它的id是"SomeTextBox",SomeTextBox不能随着网格中的行数的增加而多次出现。控件将在运行时动态命名它。

但是你仍然有办法,你必须找到容器控件并应用,Control.FindControl()方法。FindControl()获取模板控件的ID,该ID在设计时已给定。

我将使用一个方法来访问用户控件中的内容控件:

public Control FindInnerControl  (string id)
{
  if (contentHolder.Controls.Count > 0)
  {
    return contentHolder.Controls [0].FindControl (id); //The first control is your ContentContainer
  }
  return null;
}

那么在你的页面后面的代码中你可以做

TextBox txtKeytbcss = (TextBox) BaseFormControl1.FindInnerControl ("keytbcss");