主题:  ASP中怎样引用数字型变量

82941016

职务:普通成员
等级:1
金币:0.0
发贴:42
#12005/8/7 10:09:29
我用a.asp调用b.asp传递参数idh是个整型,在b.asp中的cx怎样引用这个变量,调试时它说我的数据类型不对代码如下
<% idh=request("idh")
cx="select * from lr where id='&idh&'"
conn.execute(cx)
response.write(rs("name"))

%>



缺缺

职务:管理员
等级:8
金币:41.0
发贴:9620
#22005/8/7 11:49:39
引号用错了

cx="select * from lr where id="&idh



在海水中游泳

职务:普通成员
等级:5
金币:0.0
发贴:76
#32005/8/10 13:15:40
idh=request("idh")

为什么不就这么写:request.querystinrg(key) request.form(Key)


我有一对翅膀,不是用来飞翔,而是用来煮汤。