我可以在 Web 用户控件中嵌套模板吗?
我想做这样的事情:
<MyTemplate>
<span><%# Container.Title %></span>
<MySubTemplate>
<span><%# Container.Username %></span>
</MySubTemplate>
</MyTemplate>
假设我有一个标题列表,每个标题都有一个用户名列表..如果这是正确的方法,我该怎么做或者什么是更好的方法?
I want to do something like this:
<MyTemplate>
<span><%# Container.Title %></span>
<MySubTemplate>
<span><%# Container.Username %></span>
</MySubTemplate>
</MyTemplate>
Assuming I have a list of Titles that each have a list of Usernames.. If this is a correct approach how can I do this or what is a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有一个标题列表,每个标题都有自己的用户名列表,似乎您想使用嵌套的转发器(或其他控件)而不是模板执行某些操作...
然后在 rptTitle 的 ItemDataBound 事件期间绑定 rptUsers ...
If you have a list of titles, that each have their own list of UserNames, it seems like you want to do something with nested repeaters (or other controls), not templates...
And then bind the rptUsers during the ItemDataBound event of rptTitle...
你可以这样做。 您还可以使用:
You can do it this way. You can also use: