I would like to add two additional xml namespaces to the <HTML> element in asp.net:
take:
<html xmlns="http://www.w3.org/1999/xhtml" >
to make (adding facebook open graph namespaces):
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="http://www.facebook.com/2008/fbml">
How would I access the <HTML> element in code behind and add a namespace?