How to decode url in asp.net mvc


	HttpUtility.UrlDecode(encodedStr);

	

In .Net Core


	WebUtility.UrlDecode(encodedStr)

Comments

Popular posts from this blog

How to add custom header in swagger operation