开发者

Server.UrlEncode in .ashx

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜