gpt4 book ai didi

c# - ASP.NET Core 中的 URL 编码和解码

转载 作者:IT王子 更新时间:2023-10-29 03:37:57 26 4
gpt4 key购买 nike

HttpContext.Current.Server.UrlEncode

这只适用于 .NET Framework。如何在 ASP.NET Core 中编码或解码 URI 参数?

最佳答案

  • 对于 ASP.NET Core 2.0+,只需添加 System.Net 命名空间 - WebUtility 类作为 System.Runtime.Extensions< 的一部分提供 nuget 包,在 ASP.NET Core 项目中默认引用。

  • 对于以前的版本添加 Microsoft.AspNetCore.WebUtilities nuget 包。

然后 WebUtility 类将可供您使用:

public static class WebUtility
{
public static string UrlDecode(string encodedValue);
public static string UrlEncode(string value);
}

关于c# - ASP.NET Core 中的 URL 编码和解码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44920875/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com