html iframe原网页空白

在asp.net的后台执行下面一行代码

         Response.Write("<iframe src='report.html' />");

在网页中图片说明原网页空白

iframe不是但标签,将标签写全来试试

  Response.Write("<iframe src='report.html' ></iframe>");

而且respone.write输出的html代码会出现在文档申明前面,导致文档申明无效,从而你的页面展示有问题,不过也不至于空白,你查看源代码看有什么内容

不行用服务端标签放在aspx页面来生成iframe也行

 <%="<iframe src='report.html' ></iframe>"%>

i need help!!!