我需要根据正在加载的页面动态地将链接 rel 标签添加到 head 标签。有没有办法使用 page.header.controls.add 方法来做到这一点?还是只能通过javascript或jquery?先谢谢您的帮助。
最佳答案
您可以为此使用 HtmlGenericControl 类:-
HtmlGenericControl linkFile = new HtmlGenericControl("link");
linkFile.Attributes.Add("rel", "canonical");
linkFile.Attributes.Add("href", "testPath");
Page.Header.Controls.Add(linkFile);
关于javascript - 在 head 标签中动态添加 <link rel ="canonical",我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27222458/