N
Neil Thompson
Hi
I am trying to write out some a string constant that needs to include
a couple of XML elements. The parser is, quite rightly, complaining
about what I have done but I don't know how to solve it.
I have tried a couple of methods as follows:
<head>
<meta http-equiv="refresh"
content="0;url=logic-js.asp?action=dologon&txtUsername=<xsl:value-of
select="logicresponse/username"/>&txtPassword=<xsl:value-of
select="logicresponse/password"/>"/>
</head>
Which complains about a lack of whitespace
and also:
<xsl:variable name="content">
0;url=logic-js.asp?action=dologon&txtUsername=
<xsl:value-of select="logicresponse/username"/>
&txtPassword=
<xsl:value-of select="logicresponse/password"/>
</xsl:variable>
<head>
<meta http-equiv="refresh" content="$content"/>
</head>
which, of course, just returns $content!
Any one got any idea how I can achieve what I need to do?
Thanks
Neil Thompson
I am trying to write out some a string constant that needs to include
a couple of XML elements. The parser is, quite rightly, complaining
about what I have done but I don't know how to solve it.
I have tried a couple of methods as follows:
<head>
<meta http-equiv="refresh"
content="0;url=logic-js.asp?action=dologon&txtUsername=<xsl:value-of
select="logicresponse/username"/>&txtPassword=<xsl:value-of
select="logicresponse/password"/>"/>
</head>
Which complains about a lack of whitespace
and also:
<xsl:variable name="content">
0;url=logic-js.asp?action=dologon&txtUsername=
<xsl:value-of select="logicresponse/username"/>
&txtPassword=
<xsl:value-of select="logicresponse/password"/>
</xsl:variable>
<head>
<meta http-equiv="refresh" content="$content"/>
</head>
which, of course, just returns $content!
Any one got any idea how I can achieve what I need to do?
Thanks
Neil Thompson