ASP实现IE地址栏参数的判断

2009-05-12 14:42:15来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

当地址栏没有参数"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) {...}

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:瞄准Apache IIS7向开源张开双臂

下一篇:如何让你的ASP运行于非Windows平台

热门词条
热门标签