[求助]多种选择问题?
设计思路是这样的:先判断用户名(username)是否是管理员(admin),如果是,则是"管理员";如果不是,再判断用户名的积分数(count),如果积分<500,则是"新手上路";如果500<积分<1000,则是"初级会员";如果1000<积分<2000,则是"中级会员";如果2000<积分<5000,则是"高级会员";如果积分>5000,则是"超级会员".我编写的程序是这样:
<%
dim user
if username="admin" then user="管理员" else
if count < 500 then user="新手上路"
if count>500 and count<1000 then user="初级会员"
if count>1000 and count<2000 then user="中级会员"
if count>2000 and count<5000 then user="高级会员"
if count>5000 then user="超级会员"
end if
end if
end if
end if
end if
end if
response.write(user)
%>
请问各位高手上面的程序有错在哪里?
[此贴子已经被作者于2006-8-22 21:20:43编辑过]