具有可定义内容的UserControl(如何创建模板化用户控件)

时间:2011-11-25 18:41:41

标签: asp.net user-controls

面板Web控件允许开发人员将面板放在页面上并定义将出现在面板内的内容。

是否可以通过用户控件实现类似功能,我在控件中定义了所有自定义“chrome”,但我可以将其放在任何我想要的页面上,并在每个实例的基础上定义内容?

4 个答案:

答案 0 :(得分:2)

我认为你在谈论Templated User Control。祝你好运!

答案 1 :(得分:1)

选项:

1)Uwe和Hanlet提到的模板化控制

2)jQuery UI库

3)ASP.NET 2.0 Web部件

无论你走哪条路,实施起来真的很棘手。

答案 2 :(得分:1)

正如HanletEscaño所指出的,这是完全可能的。我会说:

这是用户控制标记:

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="TemplatedUserControl.ascx.cs" Inherits="Templated_User_Control.TemplatedUserControl" %>
<table border="1">
    <tr>
        <th>Head</th>
    </tr>
    <tr>
        <td>
            <asp:PlaceHolder ID="plContent" runat="server"></asp:PlaceHolder>
        </td>
    </tr>
    <tr>
        <td>Foot</td>
    </tr>
</table>

这是用户控制代码:

using System;
using System.Web.UI;

namespace Templated_User_Control
{
    public partial class TemplatedUserControl : System.Web.UI.UserControl
    {
        private ITemplate content_m = null;

        [TemplateContainer(typeof(ContentContainer))]
        [PersistenceMode(PersistenceMode.InnerProperty)]
        public ITemplate Content
        {
            get
            {
                return content_m;
            }
            set
            {
                content_m = value;
            }
        }

        void Page_Init()
        {
            if (content_m != null)
            {
                ContentContainer container = new ContentContainer();

                //This is the real magic.  Take the contents, and put it in our ContentContainer object, then
                //add the ContentContainer object as a child control of the placeholder so it renders inside the user control
                content_m.InstantiateIn(container);
                this.plContent.Controls.Add(container);
            }
        }

        protected void Page_Load(object sender, EventArgs e) {}
        public class ContentContainer : Control, INamingContainer {}
    }
}

这是页面标记:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Templated_User_Control.Default" %>
<%@ Register src="TemplatedUserControl.ascx" tagname="TemplatedUserControl" tagprefix="uc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <uc1:TemplatedUserControl ID="TemplatedUserControl1" runat="server">
            <Content>
                Template user control test.<br />
                <asp:Literal ID="litTest" runat="server">this is a test!</asp:Literal><br />
                abc 123!
            </Content>
        </uc1:TemplatedUserControl>
    </div>
    </form>
</body>
</html>

答案 3 :(得分:0)

是的,这是完全可能的。

这是一个great example,其中开发人员覆盖现有控件(我选择了一篇带有Panel的文章,因为您以它为例),并且仍然允许内容。

文章很好,但您可能会发现示例代码更有帮助。