如何在<iframe> </iframe>中加载html

时间:2011-02-14 08:55:43

标签: javascript asp.net-mvc iframe asp.net-mvc-2

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

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

请建议我正确的方向。

谢谢。

1 个答案:

答案 0 :(得分:1)

如果你想在iframe中使用它,只需编写一个severside脚本,它接受这个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意味着另一个网址,如果您想在iframe中查看内容,则必须是自己的网页.....

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