是否可以有多个

发布于 2024-10-19 17:05:25 字数 422 浏览 0 评论 0原文

我目前有:

<uc:MyControl ...>
<Template>
</Template>
</uc:Mycontrol>

我想要

<uc:MyControl ...>
<FishBiscuit>
html
</FishBiscuit>
<FishBiscuit>
html
</FishBiscuit>
<FishBiscuit>
html
</FishBiscuit>
<FishBiscuit>
html
</FishBiscuit>
.
.
.

但是我不确定是否可能,或者如果可能的话如何连接。有什么想法吗?

I currently have:

<uc:MyControl ...>
<Template>
</Template>
</uc:Mycontrol>

I would like

<uc:MyControl ...>
<FishBiscuit>
html
</FishBiscuit>
<FishBiscuit>
html
</FishBiscuit>
<FishBiscuit>
html
</FishBiscuit>
<FishBiscuit>
html
</FishBiscuit>
.
.
.

However I'm not sure if it's possible, or how to wire it up if it is. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

对你而言 2024-10-26 17:05:25

对于您选择的方法来说,这似乎确实是不可能的。 下一个标记

<uc:MyControl runat="server">
    <FishBiscuit>
        html1
    </FishBiscuit>
    <FishBiscuit>
        html2
    </FishBiscuit>
</uc:MyControl>

如果您使用自定义控件的 public ITemplate FishBiscuit 属性, 应仅实例化最后一个模板(html2 值)。因此,有两种方法:

看,您上面发布的标记可以转换为:

<asp:MultiView runat="server">
    <asp:View runat="server">
        html
    </asp:View>
    <asp:View runat="server">
        html
    </asp:View>
    <asp:View runat="server">
        html
    </asp:View>
    <asp:View runat="server">
        html
    </asp:View>
</asp:MultiView>

这更接近您提出的标记。

It really seems impossible with the approach you choose. The next markup

<uc:MyControl runat="server">
    <FishBiscuit>
        html1
    </FishBiscuit>
    <FishBiscuit>
        html2
    </FishBiscuit>
</uc:MyControl>

should instanciate only the last template (html2 value) if you use public ITemplate FishBiscuit property of your custom control. So, there are two approaches:

  • to use different properties as
    Brian said,

  • or use a control like
    MultiView for your purposes.

See, the markup you posted above could be transformed to:

<asp:MultiView runat="server">
    <asp:View runat="server">
        html
    </asp:View>
    <asp:View runat="server">
        html
    </asp:View>
    <asp:View runat="server">
        html
    </asp:View>
    <asp:View runat="server">
        html
    </asp:View>
</asp:MultiView>

which is closer to the markup proposed by you.

与之呼应 2024-10-26 17:05:25

它们必须是不同的属性:

[
PersistenceMode(PersistenceMode.InnerProperty),
TemplateInstance(TemplateInstance.Single)
]
public ITemplate FishBiscuit { get; set; }

[
PersistenceMode(PersistenceMode.InnerProperty),
TemplateInstance(TemplateInstance.Single)
]
public ITemplate FishBiscuit2 { get; set; }

上面定义的每个模板都会转换为一个属性,因此它必须具有匹配的属性名称。

HTH。

They have to be different properties:

[
PersistenceMode(PersistenceMode.InnerProperty),
TemplateInstance(TemplateInstance.Single)
]
public ITemplate FishBiscuit { get; set; }

[
PersistenceMode(PersistenceMode.InnerProperty),
TemplateInstance(TemplateInstance.Single)
]
public ITemplate FishBiscuit2 { get; set; }

Each template defined above translates to a property, so it has to have a matching property name.

HTH.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文