I am trying to mimic the html anchor tag. I have created a class;
Public Class anchor
<XmlAttributeAttribute()> _
Public href As String
Public title As String
End Class
and get the following XML;
<a href="http://www.GM.com">
<title>GM</title>
</a>
when I would like to get;
<a href="http://www.GM.com">GM</a>
Is there a way to modify the class definition to suppress the <title> and
</title> tags? Thank you in advance for any advice.
--
Best Regards
Todd