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: whichman
  • Order by date
  1. whichman

    ASP File Upload

    go to http://www.aspwebsolution.com/downloads/default.asp and click on <b><a href=&quot;http://www14.brinkster.com/textlinkt/AWS/downloads/fileuploader.zip&quot;>Pure ASP Upload</a> Build web applications faster with a few lines of XML Code using DataML[tm] http://dataml.net
  2. whichman

    XML Transformation

    actually use this xsl source: -------------------------------------------------------- <xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;; version=&quot;1.0&quot;> <xsl:template match=&quot;/&quot;> <xsl:apply-templates /> </xsl:template>...
  3. whichman

    XML Transformation

    demo xml file: ---------------------------------------------- <?xml-stylesheet type=&quot;text/xsl&quot; href=&quot;myfile.xsl&quot;?> <xml> <row dept=&quot;A1&quot; craft=&quot;B1&quot; program=&quot;C1&quot; /> <row dept=&quot;A1&quot; craft=&quot;B1&quot; program=&quot;C2&quot; /> <row...
  4. whichman

    Problem with parsing parameters that have ' &amp; char

    The character &quot;&&quot; should be replaced with &quot;&&quot; For more on XML special characters go to: <a href=&quot;http://dataml.net/specification.htm#Special Characters&quot;>http://dataml.net/specification.htm#Special Characters</a> Build web applications faster with a few lines of...
  5. whichman

    http request

    1. Your XML file is not valid. check it: It should be something like this: <?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot; ?> <RESULTS> <RC>34</RC> <O>1</O> <S>5</S> <SITE I=&quot;1&quot;/> <SITE I=&quot;2&quot;/> <SITE I=&quot;3&quot;/> <SITE I=&quot;4&quot;/> <SITE...
  6. whichman

    Creating XML from an Access Database

    Normally with ADO you should do this: Set oRs = oConn.Execute(strSQL) oRS.Save(&quot;C:\temp\myfile.xml&quot;) But from what I understand, you want it customized. So you should do it as you did it before but just watch out for &quot;<&quot; and &quot;&&quot; characters as such: Do While Not...
  7. whichman

    Want to run servlets!!!!!

    If all you which to do is just to test your servlets, you can also try using the java servlet runner from sun. You can download it from http://downloads.com or click here http://dataml.net/downloads/other/jsdk20-win32.exe Build web applications faster with a few lines of XML Code using...
  8. whichman

    JDBC profiling

    what exactly do u want 2 cache? The SQL query or the returned recordset? Build web applications faster with a few lines of XML Code using DataML[tm] http://dataml.net
  9. whichman

    XSLT transformation to &lt;br /&gt; and not &lt;br/&gt;

    <xsl:template match=&quot;/&quot;> <xsl:apply-templates /> </xsl:template> <xsl:template match=&quot; / | @* | node()&quot;> <xsl:copy> <xsl:apply-templates select=&quot;@* | node()&quot; /> </xsl:copy> </xsl:template> <xsl:template match=&quot;br&quot;> <br/> </xsl:template>...
  10. whichman

    how do i output element tags also...

    a more guaranteed result would be to use the following: (i.e. if u want 2 copy attributes also) <xsl:template match=&quot;/&quot;> <xsl:apply-templates /> </xsl:template> <xsl:template match=&quot; / | @* | node()&quot;> <xsl:copy> <xsl:apply-templates select=&quot;@* | node()&quot; />...
  11. whichman

    Outputting XML by creating an object

    what is your question? Build web applications faster with a few lines of XML Code using DataML[tm] http://dataml.net
  12. whichman

    Including XML and XSL

    Add the extra xml files as variables as such: <xsl:variable name=&quot;file1&quot; select=&quot;document('file1.xml')/root&quot;/> import or include the XSL files using the xsl:import or xsl:include <xsl:include href=&quot;default_templates.xsl&quot;/> Build web applications faster with a few...
  13. whichman

    XML upload to SQL server 2000

    try using CDATA or add <i> and <p> to your schema Build web applications faster with a few lines of XML Code using DataML[tm] http://dataml.net
  14. whichman

    Using XML container for a font

    What are you talking about? Are you repeating a question somebody (your boss) asked you? Anyway,describing fonts, vodoo dolls or rules of engagement are all rules which are achieved based on conditional statements. My Questions: 1.) What fonts do you want to use? (System vs Custom) 2.) If...
  15. whichman

    Help: How to make XSL think non-existing elem is '' in test

    This should work <xsl:choose> <xsl:when test=&quot;page[readOnly='']&quot;> <!-- turn the page to edit mode --> </xsl:when> <xsl:otherwise> <xsl:choose> <xsl:when test=&quot;page[readOnly]&quot;> <!-- turn the page to read only --> </xsl:when>...
  16. whichman

    What does this error mean???

    The processing instruction must begin with the name of the target explain your question! It seems your stylesheet is messed up. try opening your xml file referencing it to your xsl file using IE 5.5+ and tell me what errors you get. whichman Build web applications faster with a few lines of...
  17. whichman

    XSL to display an image

    <xsl:template match=&quot;image1&quot;> <xsl:if test=&quot;.!=''&quot;> <img src=&quot;{.}&quot;/> </xsl:if> Build web applications faster with a few lines of XML Code using DataML[tm] http://dataml.net
  18. whichman

    Paging XML with XSL

    Try DataML http://dataml.net Build web applications faster with a few lines of XML Code using DataML[tm] http://dataml.net
  19. whichman

    Have any api can connect between xml and database??

    Actually there is...DataML (The Data Markup Language) is what we use to run our reporting applications...best of all it is free. http://dataml.net Build web applications faster with a few lines of XML Code using DataML[tm] http://dataml.net
  20. whichman

    Are there any programs availble to write XML stylesheets

    Try Xselerator from Marrowsoft http://www.marrowsoft.com/Products3.htm Build web applications faster with a few lines of XML Code using DataML[tm] http://dataml.net

Part and Inventory Search

Back
Top