For example, if a query string has 2 expected parameters , say. param1 = "abc"
& param2 = "def"
.
I know that Request.QuerySring["abc"]
will check for "abc" in query string.
But is there any way to validate if user enters anything else other than param1 or param2?
Thanks.