这么放iframe为什么显示不出来? 
随便做一个网页,用iframe的方式放在另一个网页里,就能显示出来,例如:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head></HEAD>
<BODY scroll=no style="MARGIN: 0px">
<iframe width="100%" height="100%" frameborder=0 scrolling=auto src=a.htm></iframe>
</BODY>
</html>但是用iframe方式把它放在另一个网页的table里,当打开另一个网页时却看不到a.htm,如:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head></HEAD>
<BODY scroll=no style="MARGIN: 0px">
<table>
<tr>
<td>
<iframe width="100%" height="100%" frameborder=0 scrolling=auto src=a.htm></iframe>
</td>
</tr>
</table>
</BODY>
</html>
这是怎么回事呀?