当前位置: 代码迷 >> J# >> .net应当怎样包含文件
  详细解决方案

.net应当怎样包含文件

热度:7780   发布时间:2013-02-25 00:00:00.0
.net应该怎样包含文件
JSP是这样包含文件的:
<tr>
    <td width="12%"><%@include file = "xxwjtopindex.jsp"%>&nbsp;</td>
    <td width="88%"><%@include file = "xxwjtopindex.jsp"%>&nbsp;</td>
  </tr>

.net应该是怎样的,请问高手们~~~~
------最佳解决方案--------------------------------------------------------
you may try:
<iframe id=iframe1 src="xxwjtopindex.jsp" runat=server>
or:

<frameset cols="20%,30%">
<frame name=left src="http://aspxos.com/AspxOS_BBS.aspx?A=D1_1_tree">
<frameset rows="30%,70%">
<frame name=top src=http://aspxos.com/AspxOS_BBS.aspx?A=D1_1_2>
<frame name=right src=http://aspxos.com/AspxOS_BBS.aspx?A=index>
</frameset>
</frameset>

------其他解决方案--------------------------------------------------------
我是想在表格里插入一个名为WebForm3.aspx的网页,不是在框架里加的。
  相关解决方案