This week's book giveaway is in the Programmer Certification forum.
We're giving away four copies of OCP Oracle Certified Professional Java SE 21 Developer Study Guide: Exam 1Z0-830 and have Jeanne Boyarsky & Scott Selikoff on-line!
See this thread for details.

Mushtaq Ahamad

Greenhorn
+ Follow
since Nov 10, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Mushtaq Ahamad

Hi All,
I am developing jsp page which has hyperlink and on click on it should open word doc and code is deployed on sun os. when i click on hyperlink it says page can not displayed.

I am reading path using properties file :
HELP_FOLDER=download


my code on jsp is as follows:
<%!
String helpFileName = System.getProperty("user.dir") + java.io.File.separator +
com.att.irt.util.AppConfig.getProperties("HELP_FOLDER") + java.io.File.separator
+ "User Manual for IRT Tool.doc";
%>

<a href="<%=helpFileName%>">User Manual IRT Download (*.doc)</a>


web.xml :
<mime-mapping>
<extension>doc</extension>
<mime-type>application/msword</mime-type>
</mime-mapping>

Please Help

Thanks
Mushtaq


13 years ago
JSP