#12003/8/31 10:52:42
我在做二级分类时遇到了头痛的问题.
在一个网页里,有两个表单,每个表单中有三个按扭,分别是:添加,删除,修改.
如何辨别这六个按扭来各自完成各自的操作?
我这样写过:
<%
select case request.form("action")
case "add_ftype"
添加一级分类
case "del_ftype"
删除一级分类
case "edit_ftype"
修改一级分类
case "add_stype"
添加二级分类
case "del_stype"
删除二级分类
case "edit_stype"
修改二级分类
end select
%>
第一个表单:
第二个表单:
怎么样也不管用.
是不是我的思路错了?
还是我哪里写错了?
请各位朋友帮帮忙.