Getting query value from URL
In this short post, I’m going to show how to get query value URL by key. Let’s say we have a sample URL like this. https://www.justsimplycode.com/fake/url?queryA=123&queryB=ABC There is this method ParseQueryString from HttpUtility, which can be imported from System.Web, that parses URL to a name value collection. This is the result One thing to watch … [Read more…]