Last active
August 29, 2015 14:08
-
-
Save CarlRevell/311820574db05088b378 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' | |
' Be careful, this will report false if you provide | |
' &view&anotherQS=something | |
' you have to include the = thus | |
' &view=&anotherQS=something | |
' | |
if(request.queryString("view").count > 0) then | |
' a queryString named view was provided | |
' even if it had no value &view= | |
else | |
' no view in the queryString | |
end if |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment