Vision drawing control help on ASP.NET pages

M

Muthu

I want to trap DocumentOpened event and others from Visio through my aspx
page. how do i do that ?

advanced thanks

muthu


<HEAD>
<title>WebForm1</title>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="C#" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5"
name="vs_targetSchema">

<script id=DrawingControl language=javascript>
function Document_ShapeAdded() {
alert('sample');
}
</script>

</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<OBJECT id="one" style="Z-INDEX: 101; LEFT: 112px; POSITION: absolute;
TOP: 88px" classid="clsid:E4615FA3-23B0-4976-BD3E-D611DDBE330E" VIEWASTEXT>
<PARAM NAME="HostID" VALUE="">
<PARAM NAME="NegotiateMenus" VALUE="1">
<PARAM NAME="NegotiateToolbars" VALUE="1">
<PARAM NAME="PageSizingBehavior" VALUE="0">
<PARAM NAME="Src" VALUE="c:\\Drawing1.vsd">
</OBJECT>
</form>

</body>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top