I often end up rolling my own wrapper/extension methods for/around System.Uri and was wondering if anyone knows of a good open source implementation. What I like to do most is parse querystring parameters, build a new query string (this is the key), and replace page names. Got any good ones, or is System.Uri good enough for you?
I often end up rolling my own wrapper/extension methods for/around System.Uri and was wondering
Share
BradVin’s QueryString Builder class is good. Fluent interface and support for encryption.
It’s also worth checking out this UrlBuilder class on CodeProject. Similar to System.UriBuilder has better support for working with the QueryString.