注册 登录
编程论坛 ASP技术论坛

怎样在ASP表格布局页面中包含其他的网页?

zhangpei01 发布于 2008-06-20 16:55, 922 次点击
怎样在ASP表格布局页面中包含其他的网页?
例如:
<table>
         <tr>
              <td><!--include file="A.asp"--></td>
              <td><!--include file="B.asp"--></td>
         </tr>
</table>
我是用这种格式,但是网页是一片空白,什么也没有,请问各位高手,这是为什么?有没有其它的方法?
请指教!
6 回复
#2
huanglun12008-06-20 17:20
提示: 该帖被管理员或版主屏蔽,只有管理员可见
#3
huanglun12008-06-20 17:21
我好象没有看到那个#号耶
#4
huanglun12008-06-20 17:21
没这个你能看到都奇怪了
#5
anjincheng2008-06-20 17:29
<table>
         <tr>
              <td><!--#include file="A.asp"--></td>
              <td><!--#include file="B.asp"--></td>
         </tr>
</table>

试一下吧!
#6
dhdhzzw2008-06-20 17:34
<!-- 注释   -->html中注释码
<!--#-->asp页面中调用代码
#7
zhangpei012008-06-21 16:09
多谢各位!
我试过了,可以的!谢谢各位
1