asp.net mvc 与 asp.net webforms:如何使我的 active-x 可用
我必须将 active-x 对象放入 asp.net mvc 视图中
<object classid="activex-site-path/my.dll#myobject" width="288" height="72">
</object>
,但 IE 不显示它(显示灰色框而不显示图像图标)。 当我将相同的行放入 asp.net webforms 项目时 - active-x 出现。
我猜想有一些路径指向控制器,所以我尝试按以下方式使用 IgnoreRoute:
routes.IgnoreRoute("*.dll");
routes.IgnoreRoute("activex-site-path/{*pathInfo}");
但它没有帮助。
这里有什么问题吗?
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 IgnoreRoute the following way:
routes.IgnoreRoute("*.dll");
routes.IgnoreRoute("activex-site-path/{*pathInfo}");
but it doesn't help.
What is wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论