string checkUrl = HttpContext.Current.Request.Url.AbsoluteUri.ToLower();
Uri AbsoluteUri = new Uri(checkUrl);
checkUrl = https://domain.co.il/HtmlPage.aspx?l=https://domain.co.il/uploads/Untitled-4-1024x377.png
I heve: https://domain.co.il/uploads/**U**ntitled-4-1024x377.png -- U UPPER
and after ask Querystring:
string L = HttpUtility.ParseQueryString(AbsoluteUri.Query).Get("L");
L = https://domain.co.il/uploads/**u**ntitled-4-1024x377.png -- u lower
How can I get the parameter as it is?