How to check querystring is null or not
| string queryStringVal = Request.QueryString["field"];
if (string.IsNullOrEmpty(queryStringValue)) {} else{ } |
|
| string queryStringVal = Request.QueryString["field"];
if (string.IsNullOrEmpty(queryStringValue)) {} else{ } |
|