XSL and XML using XMLDOM

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default XSL and XML using XMLDOM

    Hello,
    Im currently working on a personal web project to sort of make use of the
    knowledge that i learned this past semester. Im trying to become as familiar as
    I possibly can with XML and so Im using DTDs and XSL.

    My question is regarding passing parameters into the XSL from web links. See I
    have an XML file containing information about several albums. I have a html
    page that creates two MICROSOFT.XMLDOM objects and loads the XML into one and
    the XSL into the other, and transforms the XML with the XSL
    (document.write(xmlDoc.transformNode(xsltDoc)). As this works now I have three
    documents, XML sheet, XSL sheet, and the HTML to apply them (not to mention the
    DTD). considering that there are five sections (news, tools, etc) that equals
    about ten pages. Is there any way to do this more efficiently?

    My second question is a bit more specific. After Ive loaded the list, I want
    the user to click an album (an <a href> link) and a be taken to a new page to
    display more information about the same album from the XML file. Again this is
    done with a XSL file specific for that album and a HTML page (like the one
    previously mentioned) for the specific XSL sheet. Is there a way that I can
    feed the info about which album is selected into the XSL so that I dont need an
    individual XSL page and HTML page for each album?

    any help or direction would be greatly appreciated,
    thank you,
    yianni

    Liqidhed Guest

  2. Similar Questions and Discussions

    1. ASP Coding Problem, XMLDOM-related (or just language-related!)
      Hi, I'm hoping someone can help me with this problem. I'm not sure whether the problem lies with the software or with my understanding of the...
    2. Consuming WEB Service over XMLHTTP, XMLDOM
      Greetings, does anyone have code sample in ASP.NET(VB Script) calling We service that returns XML using XMLHTTP, XMLDOM. I am trying to implement...
    3. Recordset vs XMLDOM performance
      I am in the process of re-writing an .ASP to replace some recordset processing with a DOM object, and performing a transformation to present the...
    4. Microsoft.XMLDOM
      it should still be available - in fact it should be packaged with the install. try progID MSXML.DomDocument
    5. XMLDOM - Parsing
      I'm parsing an XML document using the XMLDOM object in ASP. I am running into a problem with a section formatted like this: <MasterElement>...
  3. #2

    Default Re: XSL and XML using XMLDOM

    No need to post 11 times :-)
    mzanime.com Guest

  4. #3

    Default Re: XSL and XML using XMLDOM

    thanks, i ended up passing the vars through an asp url as if i was passing vars of a form and just requested them through asp and assigned them to vars in javascipt. thanks again
    Liqidhed Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139