K
Ken
Hi,
I have a web application that call an explicit java script to draw the visio
diagram in my .net page.
However, when I try to view my web page after I upgraded to IE7, the visio
diagram cannot display anymore.
The same code is working on IE5.
The error I get is a script error – Class not registered.
The line that cause this error is - <meta
content="http://schemas.microsoft.com/intellisense/ie5"
name="vs_targetSchema">
In aspx page
==========
<div id="divVisio">
<script src="../Include/CreateVisioExplicit.js"></script>
</div>
CreateVisioExplicit.js
================
var myObject = document.createElement('object');
divVisio.appendChild(myObject);
myObject.id = "vsoDiagram";
myObject.width = "588";
myObject.height = "500";
myObject.classid= "clsid:E4615FA3-23B0-4976-BD3E-D611DDBE330E";
myObject.NegotiateMenus = "0";
myObject.NegotiateToolbars = "0";
myObject.PageSizingBehavior = "0";
myObject.Src = "";
Appreciate your help on this. Thanks
I have a web application that call an explicit java script to draw the visio
diagram in my .net page.
However, when I try to view my web page after I upgraded to IE7, the visio
diagram cannot display anymore.
The same code is working on IE5.
The error I get is a script error – Class not registered.
The line that cause this error is - <meta
content="http://schemas.microsoft.com/intellisense/ie5"
name="vs_targetSchema">
In aspx page
==========
<div id="divVisio">
<script src="../Include/CreateVisioExplicit.js"></script>
</div>
CreateVisioExplicit.js
================
var myObject = document.createElement('object');
divVisio.appendChild(myObject);
myObject.id = "vsoDiagram";
myObject.width = "588";
myObject.height = "500";
myObject.classid= "clsid:E4615FA3-23B0-4976-BD3E-D611DDBE330E";
myObject.NegotiateMenus = "0";
myObject.NegotiateToolbars = "0";
myObject.PageSizingBehavior = "0";
myObject.Src = "";
Appreciate your help on this. Thanks