表单页面
<form name="form1" method="post" action="inc.asp">
<select name="company">
<option value="1">1</option>
<option value="2">2</option>
</select>
<input type="submit" name="save" value="提交" />
</form>
提交到的页面
<%
company =Request.form("company")
if company=1 then
%>
<!--#include file="test.asp"-->
<%
else
%>
<!--#include file="test2.asp"-->
<%
end if
%>
以上测试通过,楼主可能根据实际情况调整