how to check url has parameter in c#
if(Request.QueryString != null && Request.QueryString.Count > 0)
{
return "YES";
}
else
{
return "NO";
}
how to check url has parameter in c#
if(Request.QueryString != null && Request.QueryString.Count > 0)
{
return "YES";
}
else
{
return "NO";
}
how to check url has parameter in c#
if (Request.QueryString.HasKeys())
{
Response.Write("The requested page URI has parameters");
}
how to check url has parameter in c#
return Request.QueryString != null && Request.QueryString.Count > 0 ? "YES" : "NO";
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us