當(dāng)前位置:首頁文章首頁 IT學(xué)院 IT技術(shù)

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

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

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

當(dāng)?shù)刂窓跊]有參數(shù)"id"時(shí):
 
Request.QueryString["ID"] == null
Convert.ToString(Request.QueryString["ID"]) == null
注意這樣會出錯(cuò):
Request.QueryString["ID"].ToString();
 
當(dāng)?shù)刂窓谟袇?shù)"id",但沒有賦值的時(shí)候:
 
Request.QueryString["ID"] == ""
Request.QueryString["ID"] == String.Empty
Convert.ToString(Request.QueryString["ID"]) == ""
Convert.ToString(Request.QueryString["ID"]) == String.Empty
 
同時(shí)判斷二個(gè)條件的時(shí)候:
if ("" + Request.QueryString["ID"] == "") {...}
if (("" + Request.QueryString["ID"]).Length == 0) {...}

出處:近水樓臺 BLOG

相關(guān)軟件

文章評論

軟件按字母排列: 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