Hello all,
I am having difficulty figuring out how to create an XmlElement and giving
it an attribute that requires a namespace. Here is what I have so far which
throws an exception because you can't have a : in an attribute name???
XmlElement eOnlineResource = m_context.Creat eElement("Onlin eResource");
eOnlineResource .SetAttribute(" xlink:href", "http://www.w3c.org/1999/xlink",
sldUrl);
Any help is appreciated.
I am having difficulty figuring out how to create an XmlElement and giving
it an attribute that requires a namespace. Here is what I have so far which
throws an exception because you can't have a : in an attribute name???
XmlElement eOnlineResource = m_context.Creat eElement("Onlin eResource");
eOnlineResource .SetAttribute(" xlink:href", "http://www.w3c.org/1999/xlink",
sldUrl);
Any help is appreciated.
Comment