在VS2005中使用母版页时,如何将html注入到aspx页面的head部分
更具体地说,我正在使用母版页,并且我想在某些页面中插入 rel='canonical' (例如,当我在某个 .aspx 页面中使用分页时)。
我需要将其注入母版页的头部:
这是朝着正确方向迈出的一步: ASP.NET 母版页: 如何在aspx的head部分插入标记? 但我需要更多的控制,仅当网址中有 page=2 时才注入。
谢谢
To be more specific, I'm using a master page and I want to insert rel='canonical' in some pages (for example when I'm using paging in a certain .aspx page).
I need to inject it in the head section of the master page:
This was a step in the right direction:
ASP.NET masterpages: how to insert markup in the head section inside the aspx?
but I need to have more control, to inject only when I have page=2 in the url.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
答案就在链接中。您需要在母版页中创建内容占位符,然后在页面中设置它并有条件地设置rel类型。
The answer is just there in the link. You need to create an content place holder in the master page and then set it in the pages and conditionally set the rel type.
母版页的标题部分应该有自己的内容占位符。您可以在后续页面的标题部分使用 contentplaceholder,它将被“注入”或放置到页面中。
The head section of your masterpage should have it's own contentplaceholder. You can use the contentplaceholder on your subsequent pages in the head section and it will be 'injected' or placed for the page.