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 SkipVought 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: *

  1. nigele2

    my img tag doesn't work in this xml string...

    Liz There is a space before the img but when this has gone you get a normal xml collapsing thing. The display element holds both data and child elements. Presumably you are not using a schema ot dtd? Myself I hold img's as for example; <menuitem pagename=&quot;HOME&quot...
  2. nigele2

    xml to html

    Mega - thanks
  3. nigele2

    xml to html

    I have an attribute which is 1, 2, 3 or 4. It represents the heading tags of HTML (H1, H2, H3 and H4). I wany to enclose the paragraph template below with the relevany <H?> tags. Any ideas how I can do this? <xsl:template match=&quot;section&quot; > <xsl:variable...
  4. nigele2

    HREF query string in XML file

    Jordi Obvious now you mention it. One too many & s. Thanks a million
  5. nigele2

    HREF query string in XML file

    My XML contains like: <A HREF=&quot;nextpage.asp?thispagename=CONSULTANCY 1&amp;&thispagenumber=2&quot; class=&quot;link&quot; target=&quot;right&quot;> Planning for package acquisition</A> It says it is not well formed. It expects a ; before the =2 Any ideas
  6. nigele2

    XHTML within an XML element - but what about the schema

    I want to store a lump of XHTML within an XML element. The code is based on the case study in 'Professional XSL' published by WROX. (Excellant book by the way for those already into programming). To avoid declaring XHTML tags in the schema the html is stuffed in one element <htmlcode>. The...
  7. nigele2

    Querry tags by XSL problem!! Help me pls!!

    An example: My xml is like: <e2contacts> <company> <coname>ABC Limited<coname> . . <contacts> <surname>Smith</ . . </contacts> <contacts> <surname>Brown</ ...
  8. nigele2

    A variable code prob

    Can anyone tell me why my variable is undefined. The element certainly has a value which appears in the text box. <xsl:for-each select=&quot;@addrnumber&quot;> <input type=&quot;text&quot; size=&quot;8&quot;> <xsl:attribute name=&quot;value&quot;> <xsl:value-of select=&quot;.&quot...
  9. nigele2

    XSL variables

    My XML looks like: <e2contacts ......> <company Prospect=&quot;0&quot; Formerclient=&quot;0&quot; Supplier=&quot;0&quot; PublicSector=&quot;0&quot; ITIndustry=&quot;0&quot;> <conumber>10920</conumber> ......... <contacts addrnumber=&quot;1&quot; contactnumber=&quot;1&quot; X=&quot;1&quot...
  10. nigele2

    Performance Issue

    I am using IIs with ASP and XML/XSL. The following page works but takes 30 seconds. It takes the same time upon first load as when it calls itself. However the XML/XSL transition takes 3 seconds when run using IIS/IE6 or the SAXON XML parser. <%@ Language=JScript %> <html> <head> <link...
  11. nigele2

    $all$ and $any$

    Can anyone help? My code is: xNode.setAttribute(&quot;select&quot;,&quot;company[$any$ contains(.//surname,'&quot; + strconame + &quot;')]&quot;); Without the $any$ this compatres the first found element ignoring the rest. This is what I expected. I copied the above syntax but it does not work.
  12. nigele2

    Queries of XML, XQL

    While XSL offers powerful query facility whenb considering what exists it only allows equals (for strings) regarding content. (e.g. name=&quot;smith&quot;. But what about name = &quot;sm*th&quot; or postcode = &quot;RG*&quot; Is XQL implemented anywhere? When will IIS/IE offer this? To...
  13. nigele2

    ACCESS2000 &amp; DSN &amp; ASP

    Sorry to have troubled one and all. It was a permissions problem. I set ALL to everything and hey presto. Now I need to work backwards to see what the specific was.
  14. nigele2

    Access2000, ASP and DSN

    Thanks Burns - you were right - permissions and my DSN Problem is solved. Having looked at the directories, in desperation, I set the mdb file to all for everyone. It worked. In the meantime I tried OLE as follows: Conn = Server.CreateObject(&quot;ADODB.Connection&quot;)...
  15. nigele2

    Access2000, ASP and DSN

    Thanks Burns I have put the mdbs and code in exactly the same dirs so as the Access97 works I think the permissions are OK. I had a look anyway and cannot see anything wrong. I have received input saying that the Windows2000 ODBC is not reliable and that OLE-DB is a better route. Any...
  16. nigele2

    ACCESS2000 &amp; DSN &amp; ASP

    Using Windows2000 I transferred my Access97 db, set up a DSN and my ASP pages worked fine in read only mode - so far so good. I migrated my db to Access2000, created a DSN but my ASP pages give the following error: Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [Microsoft][ODBC...
  17. nigele2

    Access2000, ASP and DSN

    I have recently installed Windows2000 with Access2000. I have created DSNs for my database in the old Access97 format and the new Access2000 format. The Access97 works fine but is read only (no probs). However the Access2000 db gives the following error relating to the connect Error Type...

Part and Inventory Search

Back
Top