Hello!
How can I change date of file within VxD?
I can't find something like Win32 API function FileDateTime() in DDK :(
Can anybody help me?
I'll be very appreciative for any help.
Avator
Hi.
I use different encodings and i have not any problems with it. I type special characters direct in XML (or XSL) by editor that is support desired encoding (they not look like Ӓ , not entity). I use corresponding headers in XML and XSL.
But I think that you must add <xsl:output...
hi dsetzer
You need this XSL code:
(you must change paths of course)
<xsl:template match="/">
<select>
<xsl:call-template name="option">
<xsl:with-param name="val" select="number(//min)"/>
</xsl:call-template>
</select>
</xsl:template>...
hi elihermans
You may try to include output directive to your XSL stylesheet
<xsl:output method="text"/>
See also disable-output-escaping attribute of xsl:text
You may get desired result by combine this things, it depends of XML tools you are use.
Hope it will be helpful.
Best...
hi auskid
You may try to type this XSL fragment:
...
<td>
<input type="text">
<xsl:attribute name="name">
<xsl:value-of select="@id"/>
</xsl:attribute>
</input>
</td>
...
You can see also caf's question "Binding XSL".
The same thing...
hi,
In general you can put xml data to xsl file, because xsl-file is first of all xml-file :)) But what you will do with this xsl file?! For xsl transform, for example, you will must to use xml fake like "<doc></doc>" or something else.
This way is contrary to xml technology, but...
Hello Dave.
Try this code:
...test="parent::LIST/@T=..."...
I don't run it on MSXML but on Sablotron it works perfectly.
Hope it will relieve.
Avator
hello, Gibble.
I guess that you must type:
<xsl:template match="category">
<div class="CategoryName">
<xsl:for-each select="//forums/forum">
<xsl:value-of select="reference/@id"/>
</xsl:for-each>
</div>...
Hello, asha.
IMHO under win32 there are two ways to do this (without stored procs): use ADO (latest versions, that's support XML output) for access to database or use MS SQL Server 2000 (which is not even released ;))
There are some ways (pretty complex) to solve problems like it (most of them...
hi silver
It depends of what type of XSL processor you use.
Try this:
<xsl:for-each select="CATALOG/BOOKS[Author='Schiller' or Author='Goethe']">
hello, caf
What kind of XSL processor do you use?
Did you tried to type XSL fragments like this:
<select id="cboOptions">
<xsl:for-each select="members/data">
<option value="{id}"><xsl:value-of select="description"/></option></xsl:for-each>
</select>
or...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.