• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

help

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
how will u add images in XML file?
how will u add hyperlinks in XML file?
how will u add breaks or spaces between lines for clarity?
any help is appreciated and thanx in advance.
RP
 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
  • Images: Store them like a path to them (string).
  • Hyperlinks: Store them like a string.
  • Spaces: Configure your XML outputter its way.

  •  
    Ranch Hand
    Posts: 1078
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    I'm not quite sure what you're trying to do. If you're asking about displaying images/hyperlinks then understand that XML is not HTML. You're storing data not displaying it, the only way to add in an 'image' would be to have something like the URI (which can be a URL of course) for your image. As for hyperlinks... well there's really no such thing in XML, if you were converting an XML file to HTML you could have a URL in the XML file that gets converted to a hyperlink but that's about it.
     
    reply
      Bookmark Topic Watch Topic
    • New Topic