如何在
我将网站错误页面的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望将其放在 iframe 中,只需编写一个服务器端脚本,该脚本采用此 HTML 并将其动态包装在 HTML 文档中: .... 等等。使此脚本公开可见并传递一些参数来告诉它要显示的内容:
http://www.foo.com/iframescript.asp?html_display_params=saved_html
然后:
你明白了......
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:
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.