I have to put active-x object into asp.net mvc view
<object classid="activex-site-path/my.dll#myobject" width="288" height="72">
</object>
but IE doesn't show it (gray box is displayed instead with image icon). When I put the same lines into asp.net webforms project - active-x appears.
I guess there is something with pathes that are directed to controllers, so I tried to use Ignore开发者_高级运维Route the following way:
routes.IgnoreRoute("*.dll");
routes.IgnoreRoute("activex-site-path/{*pathInfo}");
but it doesn't help.
What is wrong here?
精彩评论