views:

53

answers:

0

So I'm still struggling with the sucky fact that if you make a .net user control deploy as a .dll file to embed it in IE you have to have the user add the site as a trusted site AND modify their .Net security settings. If I don't do the above two things (add trusted site and modify .Net security settings) I get a http response 206 when the browser tries to load the .dll file, why? The object tag is done like so:

<object classid="path/to/MyControl.dll#TheControll.ControlClass">

I'm still trying to make it work because I'm hoping I can get the right set of security handshaking such that the user will just get prompted to trust the control and it'll load (like a normal ActiveX control).

Thanks, Sam