I have a page which will have these urls,
http://localhost:1218/Order-AUG17/Forms/Order.aspx?ContactName=HajaMubeen and 
http://localhost:1218/Order-AUG17/Forms/Order.aspx
and in my page load i have checked this,
if (Request.QueryString["ContactName"] != "")
   //My logic
else
    //My logic
But this if condition fails for both the urls. Any suggestion.