[求助]如何在一个页面里包含2个iframe?
现在有个页面main.asp 我想包含2个iframe 代码如下:
......
<body>
<table>
<tr>
<td height="400" width="100" valign="top" align="left"><iframe src="s1.asp" height="400" width="200" name="iframe1"></iframe></td>
<td height="400" width="100" valign="top" align="left"><iframe src="s2.asp" height="400" width="200" name="iframe2"></iframe></td>
</tr>
</table>
</body>
....
其中s1.asp 内容如下:
......
<body>
<p>1</p>
<p>2</p>
<p>3</p>
<p>4</p>
<p>5 </p>
</body>
......
s2.asp的作用是当点击s1.asp中数字1、2..连接后显示对应的内容
重点是在s1.asp中点击后如何在s2.asp中显示 ?????
望高手指点,急!!!!!