call函数调用+表格控制
index.asp
<!--#include file="func.asp"-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="Total.css">
</head>
<body>
<table>
<tr><td width="400px" heigt="400px"><%call A()%></td></tr>
<tr><td width="400px" heigt="400px"><%call B()%></td></tr>
<tr><td width="400px" heigt="400px"><%call C()%></td></tr>
</table>
</body>
</html>
---------------------------------------------------------------------------------------------------------
func.asp
<%
sub A()
........'A模块的内容
end sub
%>
<%
sub B()
........'B模块的内容
end sub
%>
<%
sub C()
........'C模块的内容
end sub
%>
... ...
我觉得这样做比较好,要用的模块A、B、C先在func.asp用函数的形式定义好,然后再在index.asp里面用call()调用,而模块里面所需要的css样式则在index.asp里面申明!