if rs("ID") = tp then 怎么变量

无法让TP正常读出来我网址是products.asp?type=1dimtp,id1,dtp=request.QueryString("type")id1=rs("ID"... 无法让TP正常读出来

我网址是products.asp?type=1
dim tp,id1,d
tp=request.QueryString("type")
id1=rs("ID")
if id1=tp then
d="block"
else
d="none"
end if
这样也不行啊....网页没出错,就是不对
要是 if id1=1 then 那就正常反应
展开
 我来答
翼帆
2013-02-04 · TA获得超过1729个赞
知道小有建树答主
回答量:819
采纳率:60%
帮助的人:519万
展开全部
一个是字符型,一个是数字型,所以不对。判断时加上类型转换,如
if cint(id1) = cint(tp) then
这样就可以比较了。
linzi2
2013-02-04 · TA获得超过1261个赞
知道大有可为答主
回答量:1563
采纳率:0%
帮助的人:550万
展开全部
Dim tp,id1,d
tp=request.QueryString("type")
if iNull(tp) then
Response.write "你的type不能为空"
Response.End
else
tp = Trim(tp)
end if
If IsNumeric(tp) Then
tp= CInt(tp)
Else
Response.write "你的type只能是数值型数据"
Response.End
End If
If IsNumeric(rs("ID")) Then
id1=CInt(rs("ID"))
else
Response.write "你的数据ID为空或不是数值型数据"
Response.End
end if
if id1=tp then
d="block"
else
d="none"
end if

Function iNull(Val)
Dim tmp
tmp = False
If IsNull(Val) Then
tmp = True
ElseIf IsEmpty(Val) Then
tmp = True
ElseIf Trim(Val) = "" Then
tmp = True
End If
iNull = tmp
End Function
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式