.ashx中的Server.UrlEncode

kst*_*kst 3 asp.net urlencode

我想用Server.UrlEncode.ashx.

我尝试使用以下代码.

HttpServerUtility ser = new HttpServerUtility();
ser.UrlEncode(pfile.FileName);
Run Code Online (Sandbox Code Playgroud)

这是错的,但是我想使用Server.UrlEncode,所以让我们知道.

Jos*_*osh 10

HttpContext.Current.Server.UrlEncode

...或者您可以使用Uri的方法,例如EscapeDataString,我倾向于使用它,因为它们甚至可以在ASP.NET之外使用.