如何在同一个页面显示多个内容?
看到很多电子商务网站有这样的功能:在比如页面1.asp中,选好商品填写完购买者的详细后,提交,还是同样的页面1.asp接着就显示购买者所购买的商品以及刚才填写的购买者的详细信息。请问这是怎么做的啊?我试着做了下,但是没有效果:
<%dim action%>
<%if action="" then%>
<form name="form1" method="post" action="untitled.asp?action=ok">
<table width="200" border="0" cellpadding="0">
<tr>
<td>提交前</td>
</tr>
</table>
<input type="submit" name="Submit" value="提交">
</form>
<%else if action="ok" then%><table width="200" border="0" cellpadding="0">
<tr>
<td>提交后</td>
</tr>
</table>
<%end if
end if%>
可是当我点了提交后还是显示的是提交前的内容,就是不显示提交后的内容。请高手之间一二!