我想<HTML>在asp.net中为元素添加两个额外的xml命名空间:
采取:
<html xmlns="http://www.w3.org/1999/xhtml" >
Run Code Online (Sandbox Code Playgroud)
制作(添加facebook开放图形命名空间):
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="http://www.facebook.com/2008/fbml">
Run Code Online (Sandbox Code Playgroud)
我如何访问<HTML>后面的代码中的元素并添加命名空间?