2017年4月8日 星期六

asp.net request.querystring null check

How to check that Request.QueryString has a specific value or not in ASP.NET?
--

// .NET < 4.0
if (string.IsNullOrEmpty(Request.QueryString["aspxerrorpath"]))
{
 // not there!
}

// .NET >= 4.0
if (string.IsNullOrWhiteSpace(Request.QueryString["aspxerrorpath"]))
{
 // not there!
}

沒有留言:

張貼留言