欢迎光临
我们一直在努力

地址栏参数的判断总结-ASP教程,ASP技巧

建站超值云服务器,限时71元/月

 

当地址栏没有参数"id"时:
 
request.querystring[“id”] == null
convert.tostring(request.querystring[“id”]) == null
注意这样会出错:
request.querystring[“id”].tostring();
 
当地址栏有参数"id",但没有赋值的时候:
 
request.querystring[“id”] == “”
request.querystring[“id”] == string.empty
convert.tostring(request.querystring[“id”]) == “”
convert.tostring(request.querystring[“id”]) == string.empty
 
同时判断二个条件的时候:
if (“” + request.querystring[“id”] == “”) {…}
if ((“” + request.querystring[“id”]).length == 0) {…}

出处:近水楼台 blog

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 地址栏参数的判断总结-ASP教程,ASP技巧
分享到: 更多 (0)