Hey folks. I have an in-house classic asp app that is using the following function to open a word document on a webdav folder:
Code:
<script language="JavaScript">
function openDocument(FilePath)
<!--
{
var objApp=new ActiveXObject("Word.Application");
objApp.Visible=true; // "Visible" is in the Word Object ModelEnd Sub
objApp.Documents.Open(FilePath);
}
//-->
</script>
Code:
var objApp=new ActiveXObject("Word.Application");
Any help is greatly appreciated, thanks in advance!