Request.Form[] 是否自动URL解码?

ASP.NET(C#)中的 Request.QueryString["id"]会对获取的参数默认进行 URLDecode,自动解码;那么Request.Form["id"]呢?是否也会自动解码,默认进行URLDecode?

作者: liycumt   发布时间: 2011-06-15

中文的话,需要编码和解码,才能获取到正确的参数值。
http://hi.baidu.com/pangula/blog/item/0c6c6af6f3abaf2a730eec36.html

作者: taomanman   发布时间: 2011-06-15


Server.UrlDecode(Request.Form["id"]);

作者: porschev   发布时间: 2011-06-15