I would like to use Server.UrlEncode
in .ashx
.
I try with the following code.
HttpServerUtility ser = new HttpServerUtility();
ser.UrlEncode(pfile.FileName);
That's wrong but however I would like to use Server.UrlEncode so let know 开发者_如何转开发the way.
HttpContext.Current.Server.UrlEncode
... or you can use the methods of Uri such as EscapeDataString which I tend to prefer because of the fact that they can be used even outside of ASP.NET.
精彩评论