Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 DotNetNuke 内容管理系统,并正在为它创建一个自定义模块。我想动态生成打开的图元标记并将其写入该<head>部分。那部分我可以完成,但现在我需要添加<head>标签的“前缀”部分,即看起来像这样:
<head>
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns# YOUR_NAMESPACE: http://ogp.me/ns/apps/YOUR_NAMESPACE#">
你如何以编程方式做到这一点?
明白了:Page.Header.Attributes.Add("prefix", "og: ogp.me/ns# fb: ogp.me/ns/fb# thedynoroom: ogp.me/ns/fb/thedynoroom#";)