ASP网页中,根据变量设置条件语句
我的网页中有这样一个变量:<%=GetHyMoneyAccountByHyNumber(HyNumber)%>反应的是某会员所有过去奖金总额,我想在<tr><tdwidt...
我的网页中有这样一个变量:<% =GetHyMoneyAccountByHyNumber(HyNumber)%>反应的是某会员所有过去奖金总额,我想在
<tr>
<td width="100%" height="22">
<img border="0" src="indexImg/Article_elite.gif">
<a target="main" href="Myxp_showall.asp?level=1">会员名单</a></td>
</tr>
<tr>
<td width="100%" height="1" background="indexImg/line_02.gif"></td>
</tr> 这段语句设个条件,当上面那个变量的值达到一定值时,就显示这段,未达到就隐匿。 展开
<tr>
<td width="100%" height="22">
<img border="0" src="indexImg/Article_elite.gif">
<a target="main" href="Myxp_showall.asp?level=1">会员名单</a></td>
</tr>
<tr>
<td width="100%" height="1" background="indexImg/line_02.gif"></td>
</tr> 这段语句设个条件,当上面那个变量的值达到一定值时,就显示这段,未达到就隐匿。 展开
1个回答
展开全部
<% IF GetHyMoneyAccountByHyNumber(HyNumber) > 10000 THEN%>
<tr>
<td width="100%" height="22">
<img border="0" src="indexImg/Article_elite.gif">
<a target="main" href="Myxp_showall.asp?level=1">会员名单</a></td>
</tr>
<tr>
<td width="100%" height="1" background="indexImg/line_02.gif"></td>
</tr>
<%END IF%>
假设 GetHyMoneyAccountByHyNumber(HyNumber)这个值大于10000 就显示 这两行。 否则不显示
<tr>
<td width="100%" height="22">
<img border="0" src="indexImg/Article_elite.gif">
<a target="main" href="Myxp_showall.asp?level=1">会员名单</a></td>
</tr>
<tr>
<td width="100%" height="1" background="indexImg/line_02.gif"></td>
</tr>
<%END IF%>
假设 GetHyMoneyAccountByHyNumber(HyNumber)这个值大于10000 就显示 这两行。 否则不显示
更多追问追答
追问
我试了一下,不行呢?
追答
你把 GetHyMoneyAccountByHyNumber(HyNumber) 这个值 输出 出来看看是否存在
例如: Response.write( GetHyMoneyAccountByHyNumber(HyNumber) )
如果存在 看看是不是数字类型 。 有时候需要转换一下 类型。
10000 then
%>
会员名单
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询