acually i want to redirect from one xsl to another
Bhavya
On 8/28/06, Kamal Bhatt <
[EMAIL PROTECTED]> wrote:
Bhavya Sharma wrote:
> Hi Devs
> i want to do redirection in xslt ,is there any way to do that ?
>
> --
> With-
> Thanks and Regards
>
> Bhavya Sharma
What do you mean by redirection in XSLT? Do you want to create HTML that
redirects to another page or do you mean "redirect" the XML to another XSLT?
I use the following code to redirect:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns=" http://www.w3.org/1999/xhtml"
>
<xsl:param name="url"/>
<xsl:template match="*">
<html>
<head>
<LINK type="text/plain" href=""
<META http-equiv="REFRESH" content="1;url=""> </head>
<body/>
</html>
</xsl:template>
</xsl:stylesheet>
As you can see, what you pass in doesn't matter, just as long as you
pass the URL in as a parameter.
--
Kamal Bhatt
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
With-
Thanks and Regards
Bhavya Sharma
