I am decoding urls to purest form which browsers display and then storing them at the MS SQL db (nvarchar column type) with
srRelativeUrl = HttpUtility.UrlDecode(srRelativeUrl);
My question is i am also fetching newly discovered urls with
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(srRelativeUrl);
Could there be any scenario this would cause error because url is not properly encoded ?
Ty very much for answers