Created
December 9, 2013 12:19
-
-
Save jz5/7871437 to your computer and use it in GitHub Desktop.
QueryString
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
Dim q = Context.Request.QueryString.Get("q") | |
If Not Uri.IsWellFormedUriString(q, UriKind.Absolute) Then | |
Exit Sub | |
End If | |
Dim url = New Uri(q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment