c#asp.net如何从iframe调用dll

本文关键字:iframe 调用 dll net c#asp | 更新日期: 2023-09-27 18:26:36

我有一个dll,它被调用如下:

http://xxxx/dllFile.dll

出于安全考虑,我想从浏览器中隐藏dll调用,我要求开发该页面的公司隐藏dll调用。他们的答案是:

There’s no development to hidden the url for the “chat.dll”.
The most simple is making an alternative start page. On this page have an “IFrame” and inside will contain the complete chat. Thus hidden all chats urls, and show only the URL from the start page.

所以我开始研究他们的建议。我的名字是这样的:

<iframe>
    </iframe>

我的问题是如何从这个iframe调用dll文件?

感谢

c#asp.net如何从iframe调用dll

要告诉iframe从url加载其内容,只需设置其src属性:

<iframe src="http://xxxx/dllFile.dll">