ASP.Net custom control stop works after installing Framework 2.0

Xtremer

Newcomer
Joined
Apr 9, 2004
Messages
3
Hi all,
I've developed an ASP.Net application with VS2003 / Framework 1.1. In a page of this application I load a object from an exe situated in web app directory using


<OBJECT id="MyObj" style="WIDTH: 608px; HEIGHT: 256px" height="272" width="256" classid="MyExe.exe#MyNamespace.MyAssembly.MyObject" VIEWASTEXT>
<% dim strObjRegId
dim strDocFileName
strObjRegId = Request.Querystring("ObjRegId")
strDocFileName = Request.Querystring("DocFileName")
<PARAM NAME="ObjRegId" VALUE="<%=strObjRegId%>">
<PARAM NAME="DocFileName" VALUE="<%=strDocFileName%>">
</OBJECT>


To let it run into web page I had to define (on clients machine) a protection rule into ".NET Framework 1.1 Configuration".
All has worked fine since users started to install Framework 2.0: installing Framework 2.0 prevent assembly to be loaded. I suppose it's a security problem, and I tried to define same rules on 2.0 configuration. With no success.
I can't find a solution to this nor I know how to log what's happening...
I need your help! Thanks!
 
Back
Top