| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 547 人关注过本帖
标题:[求助]多种选择问题?
只看楼主 加入收藏
kymbc
Rank: 1
等 级:新手上路
帖 子:72
专家分:0
注 册:2006-4-18
收藏
 问题点数:0 回复次数:8 
[求助]多种选择问题?
设计思路是这样的:先判断用户名(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编辑过]

搜索更多相关主题的帖子: 选择问题 
2006-08-22 17:59
seal520_2008
Rank: 1
等 级:新手上路
帖 子:239
专家分:0
注 册:2006-6-13
收藏
得分:0 
&lt;%
dim user
if username="admin"  then user="管理员"  
if count &lt; 500 then user="新手上路"
if count&gt;500 and count&lt;1000 then user="初级会员"
if count&gt;1000 and count&lt;2000  then user="中级会员"
if count&gt;2000 and count&lt;5000 then user="高级会员"
if count&lt;5000  then user="超级会员"
response.write(user)
%&gt;

每晚0:00上线 msn:seal520_2008@ myblog:http://seal.
2006-08-22 19:16
kymbc
Rank: 1
等 级:新手上路
帖 子:72
专家分:0
注 册:2006-4-18
收藏
得分:0 
楼上的朋友,我按你说地做了,还是不行呀!
有哪位高手能告诉我怎么写?
2006-08-22 21:36
seal520_2008
Rank: 1
等 级:新手上路
帖 子:239
专家分:0
注 册:2006-6-13
收藏
得分:0 
怎么不行 出现什么错误啊

每晚0:00上线 msn:seal520_2008@ myblog:http://seal.
2006-08-22 21:49
kymbc
Rank: 1
等 级:新手上路
帖 子:72
专家分:0
注 册:2006-4-18
收藏
得分:0 
错误类型:
Microsoft VBScript 编译器错误 (0x800A0400)
缺少语句
/asp/detail.asp, line 143
end if
2006-08-22 22:06
seal520_2008
Rank: 1
等 级:新手上路
帖 子:239
专家分:0
注 册:2006-6-13
收藏
得分:0 
143行是哪里???

每晚0:00上线 msn:seal520_2008@ myblog:http://seal.
2006-08-22 22:06
渚薰
Rank: 6Rank: 6
等 级:贵宾
威 望:22
帖 子:1132
专家分:0
注 册:2006-8-6
收藏
得分:0 
修正下&lt;%
dim user
if username="admin"  then
    user="管理员"
else
    if count &lt; 500 then user="新手上路"
    if count&gt;500 and count&lt;1000 then user="初级会员"
    if count&gt;1000 and count&lt;2000  then user="中级会员"
    if count&gt;2000 and count&lt;5000 then user="高级会员"
    if count&lt;5000  then user="超级会员"
end if
response.write(user)
%&gt;

个人ajax技术专题站: " target="_blank">http://www. 我不会闲你烦,只会闲你不够烦!
2006-08-22 22:10
kymbc
Rank: 1
等 级:新手上路
帖 子:72
专家分:0
注 册:2006-4-18
收藏
得分:0 
&lt;%
dim user
if username="admin"  then user="管理员"  
if count &lt; 500 then user="新手上路"
if count&gt;500 and count&lt;1000 then user="初级会员"
if count&gt;1000 and count&lt;2000  then user="中级会员"
if count&gt;2000 and count&lt;5000 then user="高级会员"
if count&lt;5000  then user="超级会员" (143)
response.write(user)
%&gt;
2006-08-22 22:12
kymbc
Rank: 1
等 级:新手上路
帖 子:72
专家分:0
注 册:2006-4-18
收藏
得分:0 
谢谢渚薰和seal520_2008这两位可敬的朋友.按渚薰朋友的写法.终于解决了这个问题.再次感谢.但是小弟还是有一个小问题还是不太清楚,为什么按渚薰朋友的写法就对,而对于下面的写法,却提示出错误呢?
&lt;%
dim user
if username="admin"  then user="管理员" else
    if count &lt; 500 then user="新手上路"
    if count&gt;500 and count&lt;1000 then user="初级会员"
    if count&gt;1000 and count&lt;2000  then user="中级会员"
    if count&gt;2000 and count&lt;5000 then user="高级会员"
    if count&lt;5000  then user="超级会员"
end if
response.write(user)
%&gt;

错误类型:
Microsoft VBScript 编译器错误 (0x800A0400)
缺少语句
/asp/detail.asp, line242
end if


2006-08-22 22:29
快速回复:[求助]多种选择问题?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.020478 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved