T
ton
Hi,
I want users to create a word document via javascript in my (vb) asp.net
application (website).
Is this possible?
Is this possible for all browsers?
the script (which I've found on the web):
function startWord(strFile)
{
var myApp = new ActiveXObject("Word.Application");
if (myApp != null)
{
myApp.visible = true;
myApp.documents.Open('#jsSafe_FilePath#');
}
return false;
}
does not work: I receive an runtime error Microsoft Jscript can create
object
Thanx
ton
I want users to create a word document via javascript in my (vb) asp.net
application (website).
Is this possible?
Is this possible for all browsers?
the script (which I've found on the web):
function startWord(strFile)
{
var myApp = new ActiveXObject("Word.Application");
if (myApp != null)
{
myApp.visible = true;
myApp.documents.Open('#jsSafe_FilePath#');
}
return false;
}
does not work: I receive an runtime error Microsoft Jscript can create
object
Thanx
ton