我想在一个简单的JSP页面里用iframe显示一个文本文件,代码如下:<%@ page language="java" contentType="text/html; charset=GB18030"
    pageEncoding="GB18030"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>预览</title>
</head>
<body>
<form id="form1" method="POST">
    <div>
   <iframe name="rpframe" width=100% height=100% frameborder=0 scrolling=auto src="D:\temp\report_test.txt"></iframe>
    </div>
    </form>
</body>
</html>在Eclipse里预览时没有问题的,可是部署到tomcat下用ie访问页面就是空白的,什么也出不来?不知道是哪里出了问题,请各位大虾帮帮忙!