中断中继器以添加广告并继续中继器

发布于 2024-12-07 02:02:38 字数 196 浏览 4 评论 0原文

在评论和博客条目之间,我想添加一些东西来赚点钱:DI 使用

<asp:repeater>
</asp:repeater>

写出所有博客条目。 是否有可能以某种方式中断转发器以便能够写出广告横幅的代码? 例如运行 3 个条目,然后添加一些广告代码并继续另外 3 行博客条目? 等等...

Between the comments and blog entries i want to add some stuff to earn some money :D
I use

<asp:repeater>
</asp:repeater>

To write out all the blog entries.
Is it possible in some way to interrupts the repeater to be able to write out the code for the ad-banner?
For example run 3 entries, then add some code for the advertisement and continue with another 3 rows of blog entries?
And so on...

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

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

发布评论

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

评论(1

孤独陪着我 2024-12-14 02:02:38

这不可能开箱即用,但有一个非常简单的解决方法。

在转发器 ItemTemplate 的末尾添加一个面板,将广告放入其中,并将其 Visible 属性设置为“<%# Container.DataItemIndex == 3 %>”或者无论如何,

It's not possible out-of-the-box, but there is a quite simple workaround.

Add a Panel in the end of your repeater ItemTemplate, put the ad inside it, and set it's Visible attribute to be "<%# Container.DataItemIndex == 3 %>" or whatever,

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