C# 设计模板容器?

发布于 2024-08-04 19:19:13 字数 407 浏览 7 评论 0原文

我一直在努力寻找一个好的指南来创建模板化控件。我试图在网站的几个不同部分显示一些图片,因此我想添加一个模板控件以允许我在渲染之前修改 HTML。比如:

<cc1:photos runat="server" id="myPhotos">
<photoCell>
    <img src="<%# photo %>" alt="<%# alt %>" /><br /><%# photoText %>
</photoCell>
</cc1:photos>

然后我希望能够打印 photoCell ax 次数,具体取决于我想要显示的照片数量。问题是我找不到关于该主题的任何教程,该教程还显示如何使用不同的文本/图像多次打印数据。

I have been trying to find a good guide to create a templated control. I am trying to display a few pictures on several different parts of my website so I wanted to add a template control to allow me to modify the HTML before it renders. Something like:

<cc1:photos runat="server" id="myPhotos">
<photoCell>
    <img src="<%# photo %>" alt="<%# alt %>" /><br /><%# photoText %>
</photoCell>
</cc1:photos>

I then want to be able to print that photoCell a x number of times depending on how many photos that I want to display. The problem is that I can't find any tutorials on this topic that also displays how to print the data several times with different texts/images.

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

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

发布评论

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

评论(1

天涯离梦残月幽梦 2024-08-11 19:19:13

看一下这个来创建模板化控件:

http://msdn.microsoft .com/en-us/library/ms178657.aspx

您还考虑过使用中继器吗?

Have a look at this to create a templated control:

http://msdn.microsoft.com/en-us/library/ms178657.aspx

Also have you considered using a repeater?

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