Hi!,
I am embedding my .Net user controls ( created through Class library template) in HTML object tag.
But the user control is not getting downloaded in IE 6.0

I created and compiled my dll using the .Net Framework and placed it along with the HTML in
the ROOT directory of  Tomcat Web Server.

and my HTML looks as the one shown below.

<html>
<body>
<center>
   <object id="container"   name="container" width="300" height="300"
     classid="http://10.1.30.67/NBFinalTest.dll#NBFinalTest.NBFinalTest";
      codebase="http://10.1.30.67/NBFinalTest.dll";>
   </object>
</center>
</body>
</html>

also i have added a mime typing in web.xml of the <TOMCATHOME>/conf directory for dll download as shown below

<mime-mapping>
<extension>dll</extension>
<mime-type>application/x-msdownload</mime-type>
</mime-mapping>

also i in the trusted sites of IE i have added my server's link...

and finally when i accessed my html using this URL : "http://10.1.30.67/NBFinal.html"; the user control is not getting downloaded.... can u please suggest me some possible reasons that why is the control not getting downloaded.


I read that someone in this user group got successfully downloaded user controls using Tomcat web server.
So please help me out in this regard....


Thank you.
Krishnan.S

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to