如何在

发布于 2024-10-17 10:01:16 字数 149 浏览 1 评论 0原文

我将网站错误页面的 html 存储在 sql 表中,我想在管理端的窗口中显示它们,但无法在 iframe 中加载保存的 html,我正在使用 asp.net mvc2。

它需要保存页面,并稍后显示给管理员。

请建议我正确的方向。

谢谢。

I am storing html of error pages of my site in sql table, i want to display them in a window, on the admin side, but not able to load the saved html in iframe, i am using asp.net mvc2.

its needed to save the pages, and display later to admin.

please suggest me right direction.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

战皆罪 2024-10-24 10:01:17

如果您希望将其放在 iframe 中,只需编写一个服务器端脚本,该脚本采用此 HTML 并将其动态包装在 HTML 文档中: .... 等等。使此脚本公开可见并传递一些参数来告诉它要显示的内容:

http://www.foo.com/iframescript.asp?html_display_params=saved_html

然后:

<iframe src="http://www.foo.com/iframescript.... 

or: $('#iframeid').attr('src', 'http://www.foo.com/iframescript.asp....

你明白了......

iframe 意味着另一个 url 位置,如果你想在 iframe 中查看某些内容,它必须是它自己的页面......

否则你需要一个普通的框架。

If you want it in an iframe, just write a severside script that takes this HTML and wraps it in a HTML doc dynamically: .... etc. Make this script publicly visible and pass some params to tell it what to display:

http://www.foo.com/iframescript.asp?html_display_params=saved_html

then:

<iframe src="http://www.foo.com/iframescript.... 

or: $('#iframeid').attr('src', 'http://www.foo.com/iframescript.asp....

you get the idea....

iframe means another url location, if you want to view something in an iframe it has to be it's own page.....

otherwise you want a normal frame.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文