ASP.NET 可以从多个位置提供单个内容占位符吗?
是否可以从子页面的多个区域提供单个母版页内容占位符?像字符串构建器之类的东西?
Is it possible to feed a single Master Page Content Placeholder from multiple areas in the child page? Something like a string builder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以使用字符串生成器,然后在单个内容占位符中输出该字符串。
您不能两次引用内容占位符,因此连接字符串几乎是您唯一的选择。
You can always use a string builder and then output that string in a single content placeholder.
You cant reference the content placeholder twice so concatenating a string is pretty much your only option.