.net实现2个web页面合并
.net实现2个web页面合并。在线多用户聊天系统中。把发言界面和现实界面显示在一个界面中。如何把这2个界面合并呢?谢谢。有代码最好。
回复 2楼 qingshuiliu
<h2 align="center">*欢迎来到MyChatRoom*</h2><form id="Form1" method="post" runat="server">
<table id="Table1" cellspacing ="1" cellpadding ="1"height="100%" width="90%" border="1"
align="center">
<tr>
<td ><iframe src="ShowMessage.aspx" width="100%" height="100%"></iframe>
</td>
</tr>
<tr>
<td ><iframe src="Speak.aspx" width="100%" height="100%"></iframe>
</td>
</tr>
</table>
</form>
错误 2 验证 (XHTML 1.0 Transitional): 属性“height”不是元素“table”的有效属性。 D:\c#\多用户聊天\Main.aspx 14 59 D:\c#\多用户聊天\ 不解。