/ Published in: C#
Expand |
Embed | Plain Text
string id = (!string.IsNullOrEmpty(Request.QueryString["id"])) ? Request.QueryString["id"] : String.Empty; if (id.Length > 0) { } int id= (!string.IsNullOrEmpty(Request.QueryString["id"])) ? Convert.ToInt32(Request.QueryString["id"]) : 0; if (id > 0) { }
You need to login to post a comment.
