calling jsp from xslt
Hi,
is it possible to call or forward open a jsp file from xsl.
for eg:
my xml:
<richtext xmlns:dxl="http://www.lotus.com/dxl">
<par def="2"><img src= img onClick=OpenFile(D:\Misc\abc.pdf )></img></par>
</richtext>
this is my xml,how to write an xsl onclicking the image i should be able to open the file located in that path.
why i said to forward to jsp means ,on clicking the img i will open the pdf file from a jsp as its a webapplication need to check the context o fthe application also.
for say my xsl should
look like
<img src="images/Pdf.gif" ><a target="_blank" href="pdf.jsp?pid=D:\Misc\abc.pdf </a>
Thanks in advance........
|