Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: nji78
  • Order by date
  1. nji78

    html in xml element is ignored

    XML File ------------------------------------- <?xml-stylesheet type=&quot;text/xsl&quot; href=&quot;page.xsl&quot;?> <page> <document> <date>09 September 2002</date> <title>Editor Test</title> <body><b>Test</b></body> <category>Testing</category> <image /> <file /> <internal...
  2. nji78

    Capturing current URL in XSL

    put all javascripts in CDATA sections as follows <script language=&quot;javascript&quot;> <![CDATA[ var url = window.location.href var queryString = location.search.substring(1, location.search.length); ]]> </script> your stylesheet as below...
  3. nji78

    Capturing current URL in XSL

    <script language=&quot;javascript&quot;> var url = window.location.href var queryString = location.search.substring(1, location.search.length); </script>
  4. nji78

    XSL transformation question

    The simplest approach will be to use the style sheet below: _________________________________________________________ <xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&quot;1.0&quot;> <xsl:output method=&quot;html&quot; version=&quot;4.0&quot; />...
  5. nji78

    Loading an expanded ParentGroup

    go to http://www14.brinkster.com/textlinkt/xmlrepublic/default.htm and click on &quot;Simple Tree&quot;
  6. nji78

    Loading an expanded ParentGroup

    go to http://www14.brinkster.com/textlinkt/xmlrepublic/index.xml and click on &quot;Simple Tree&quot;
  7. nji78

    XSL problem

    I don't know what you are trying to archieve but I think this stylesheet might give you a heads start *************************************************** ----------------persons.xml-------------------------- <?xml-stylesheet type=&quot;text/xsl&quot; href=&quot;persons.xsl&quot;?> <persons>...
  8. nji78

    Can u please tell me how to use the character &quot;&amp;&quot; in an xml file ?

    '&' is a special character. use '& a m p ;' Note: No spaces between the characters I had to put spaces because this website keeps formating my text into html
  9. nji78

    Forum using XML and Asp

    It all depends on - how your application is designed - how you handle locks and connection pools - how easy it would be to port your application different platforms if need be. - How you can easily extend your application to use other technologies such as Flash & SVG
  10. nji78

    Help... Can't get getElementbyId to work...

    getElementById is not XML processing method use: consider: <root> <item id=&quot;_5&quot;>My Item</item> <item id=&quot;_6&quot;>My Item</item> <item id=&quot;_7&quot;>My Item</item> </root> root = myXML.documentElement item = myXML.getElementsByTag(&quot;item&quot;) for (int...
  11. nji78

    new to XML and am very stuck!

    node.getNodeValue();
  12. nji78

    XSL question

    <xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&quot;1.0&quot;> <xsl:template match=&quot;/&quot;> <table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;> <tr> <td> <xsl:for-each...

Part and Inventory Search

Back
Top