中断中继器以添加广告并继续中继器
在评论和博客条目之间,我想添加一些东西来赚点钱: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不可能开箱即用,但有一个非常简单的解决方法。
在转发器 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,