Querystring to return a case sensitive string

Viewed 65
1 Answers

checkUrl cannot contain uppercase characters, because you are calling the ToLower() method. If you want the result in the original case, reconsider the use of the ToLower() method

Related