最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

asp.net導(dǎo)出Excel亂碼的原因及解決方法

 更新時間:2014年02月19日 15:41:04   作者:  
asp.net導(dǎo)出Excel亂碼的情況時有發(fā)生,本文有個不錯的解決方法,大家可以參考下
復(fù)制代碼 代碼如下:

protected void Excel_Click(object sender, EventArgs e)
{
Response.Charset = "UTF-8";
Response.ClearContent();
Response.Clear();
Response.ContentEncoding = System.Text.Encoding.UTF8;
Response.HeaderEncoding = System.Text.Encoding.UTF8;
Response.AddHeader("content-disposition", "attachment; filename=MyExpress.xls");
Response.ContentType = "application/excel";
System.IO.StringWriter sw = new System.IO.StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
// turn off paging
GridView1.AllowPaging = false;
dataBind();
GridView1.RenderControl(htw);
Response.Write(sw.ToString());
Response.End();
// turn the paging on again
GridView1.AllowPaging = true;
dataBind();
}

關(guān)鍵:
復(fù)制代碼 代碼如下:

Response.Charset = "UTF-8";//添加編碼格式
Response.ClearContent();
Response.Clear();
Response.ContentEncoding = System.Text.Encoding.UTF8;//表格內(nèi)容添加編碼格式
Response.HeaderEncoding = System.Text.Encoding.UTF8;//表頭添加編碼格式

上邊如果解決不了還可以用
復(fù)制代碼 代碼如下:

Response.ClearContent();
Response.Clear();
Response.AddHeader("content-disposition", "attachment; filename=sumlate.xls");
Response.Charset = "GB2312";
Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
Response.ContentType = "application/excel";
System.IO.StringWriter sw = new System.IO.StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
if (GridView2.Rows.Count > 0)
{
GridView2.RenderControl(htw);
}
else
{
GridView1.RenderControl(htw);
}
Response.Write(sw.ToString());
Response.End();

關(guān)鍵:
復(fù)制代碼 代碼如下:

Response.Charset = "GB2312";
Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");

注意觀察,主要原因其實就是編碼格式問題。

現(xiàn)在就能防止導(dǎo)出時候亂碼問題了

相關(guān)文章

最新評論

桐乡市| 巩义市| 大丰市| 南宁市| 临桂县| 璧山县| 策勒县| 广灵县| 吴桥县| 玉树县| 东港市| 本溪市| 彭水| 镇宁| 开江县| 景德镇市| 浠水县| 静乐县| 萨迦县| 长寿区| 克山县| 榕江县| 龙口市| 乌鲁木齐市| 邻水| 汪清县| 施秉县| 珲春市| 泾阳县| 唐河县| 桦川县| 陆丰市| 堆龙德庆县| 石林| 梁山县| 凤冈县| 寻甸| 平遥县| 鱼台县| 泸州市| 阿拉尔市|