K
ksr
Hello,
I have a HTML page, which loads an activeX control in the browser.
In the <HEAD> section, I have javascript similar to the following,
<SCRIPT language="JavaScript">
var Index = "";
// do some processing which sets a value to variable Index
</SCRIPT>
In the <BODY> section, I am downloading the cab file, which is an
activeX control, so the code is,
<BODY TEXT="#000000" BGCOLOR="#FFFFFF"..........>
<OBJECT ID="objID" CLASSID=...."CODEBASE="..>
<param name="name" value=..>.
</OBJECT>
</BODY>
</HTML>
In the param name=value pair, I want to assign the variable Index to
value. Just by doing value=Page, it does not work. Could someone
suggest how I can access javascript variable here?
Thankyou.
I have a HTML page, which loads an activeX control in the browser.
In the <HEAD> section, I have javascript similar to the following,
<SCRIPT language="JavaScript">
var Index = "";
// do some processing which sets a value to variable Index
</SCRIPT>
In the <BODY> section, I am downloading the cab file, which is an
activeX control, so the code is,
<BODY TEXT="#000000" BGCOLOR="#FFFFFF"..........>
<OBJECT ID="objID" CLASSID=...."CODEBASE="..>
<param name="name" value=..>.
</OBJECT>
</BODY>
</HTML>
In the param name=value pair, I want to assign the variable Index to
value. Just by doing value=Page, it does not work. Could someone
suggest how I can access javascript variable here?
Thankyou.