當前位置:首頁文章首頁 IT學院 IT技術

ASP小技巧之地址欄參數(shù)的判斷總結

作者:  來源:  發(fā)布時間:2011-6-16 15:07:38  點擊:

這篇文章提供給大家學習的是關于ASP小技巧之地址欄參數(shù)的判斷總結,希望能夠幫助到大家。

當?shù)刂窓跊]有參數(shù)"id"時:
 
Request.QueryString["ID"] == null
Convert.ToString(Request.QueryString["ID"]) == null
注意這樣會出錯:
Request.QueryString["ID"].ToString();
 
當?shù)刂窓谟袇?shù)"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

相關軟件

文章評論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z