asp中如何判断传来的get数据中是否有某一变量
1.比如:http://www.ceshi.com/index.asp?id=3&name=Tom我们可以通过如下操作来获取get中的name:dimtheNamethe...
1. 比如:http://www.ceshi.com/index.asp?id=3&name=Tom
我们可以通过如下操作来获取get中的name:
dim theName
theName=Request("name")
2. 那如果传来的get数据中没有name呢,
比如:http://www.ceshi.com/index.asp?id=3
问:那我应该如何判传来的get数据中是否有name呢?谢谢您的回答1 展开
我们可以通过如下操作来获取get中的name:
dim theName
theName=Request("name")
2. 那如果传来的get数据中没有name呢,
比如:http://www.ceshi.com/index.asp?id=3
问:那我应该如何判传来的get数据中是否有name呢?谢谢您的回答1 展开
3个回答
展开全部
没有name那么request("name")的值就是空字符串啊
dim theName
theName=Request("name")
if theName="" then
'没有name
else
'有name
End if
dim theName
theName=Request("name")
if theName="" then
'没有name
else
'有name
End if
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用id=3再查询出name是否为空或有值存在
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
传值没有你就得不到,传输方式就只有get和post两种
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询