在ASP.NET中,IE与Firefox下载文件带汉字名时乱码的解决方法
解决办法:HttpContext.Current.Response.Clear();HttpContext.Current.Response.Buffer=true;HttpContext.Current.Response.ContentEncoding=System.Text.Encoding.GetEncoding("GB2312");HttpContext.Current.Response.Charset="gb2312;...