Hi All,
I am creating a web app that at various points accesses various files from a local repository (the app will be installed on WAS instances on local servers and the repository will be on the server with a WAS variable pointing to its location - so the web app knows where it is)
On my web page I am trying to have a list of links to generated reports that will be stored in the repository:
<td><a href="<%out.println(stubHome + "\\reports\\");
out.println(serviceArray);
%>.html">View results</a>
</td>where stubHome is the location of the root of the repository and serviceArray is a list of the specific report names.
When I view the site the "View results" link appears as normal (blue/underlined) and when I hover the mouse over the link I see in the bottom left of the IE window "file:///D:/stubRepo/reports/Service1.html" - which is the correct the name/location of the stored report - and if i just paste that link into my address bar on teh browser then the file opens.
However, if i try to click on the link directly on my web page nothing happens and there are no signs of anything happening... any ideas what might be wrong?
Thanks in advance guys!