CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2005
    Posts
    1,030

    How to use href in XML?

    I have a data containing a href in XML like the following,

    Code:
    <tag> If you don't understand this, please use <a href = "www.google.com"> this site </a> to find out </tag>
    But it doesn't work. I wonder how to make it work? Thanks.

  2. #2
    Join Date
    Jan 2011
    Location
    Orange County, CA
    Posts
    82

    Re: How to use href in XML?

    add the http:// like so:
    <a href="http://www.google.com">this site</a>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured