aspose file tools
The moose likes JSP and the fly likes opening a word document on localsystem in internet explorer Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "opening a word document on localsystem in internet explorer" Watch "opening a word document on localsystem in internet explorer" New topic
Author

opening a word document on localsystem in internet explorer

blockhead silver
Greenhorn

Joined: Jan 20, 2013
Posts: 1
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script language="JavaScript">
function startWord(strFile)
{
var myApp = new ActiveXObject("Word.Application");
if (myApp != null)
{
myApp.Visible = true;
myApp.Documents.Open(strFile);
}
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<a href="javascript:startWord('C:\\Users\\Silver\\Desktop\\iii.doc')">mylink1</a>
</body>
</html>
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56150
    
  13

Please TellTheDetails and ShowSomeEffort. Just posting some code and expecting everyone else to figure out what your problem is isn't going to get you much help.

Also, as this is not a JSP questions, it's been moved to the HTML forum.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: opening a word document on localsystem in internet explorer
 
Similar Threads
toggling between two languages
I got http-500 error in servlet and jsp.how to find error?
http error404
Could not find action or result
give another jsp to action