|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
缺乏可以共同遵循的行业标准,ASP还处在发展初期,大家对它的理解不同,如产品和服务标准,收费标准等,不利于行业的健康发展。datagrid|excel|数据当导数据到Excel中时偶然会呈现乱码
本来代码
privatestaticvoidWriteToExcelFromDataGrid(DataGriddg,stringfileName)
{
//StringWritertw=newStringWriter(newCultureInfo("zh-CHS",false));
StringWritertw=newStringWriter();
HtmlTextWriterhw=newHtmlTextWriter(tw);
dg.RenderControl(hw);
System.Web.HttpResponseresponse=System.Web.HttpContext.Current.Response;
response.Clear();
response.ContentEncoding=System.Text.Encoding.GetEncoding("utf-8");
response.ContentType="application/vnd.ms-excel";
response.AddHeader("Content-Disposition","attachment;filename="+fileName);
response.Charset="gb2312";
response.Write(tw.ToString());
response.End();
}
准确
response.ContentEncoding=System.Text.Encoding.GetEncoding("utf-7");
缘故原由utf-8不撑持中文
</p>Windows本身的所有问题都会一成不变的也累加到了它的身上。安全性、稳定性、跨平台性都会因为与NT的捆绑而显现出来; |
|