//我的可运行源码,一个字符都没有改。
protected void btnOutput_Click(object sender, EventArgs e)
//这是页面上的导出按钮单击入口。
{
string strFileName = HttpContext.Current.Server.MapPath("../Excels/") + "ExcelOutput";
//本行指定一个服务器上的绝对路径和文件名;
try
{
HttpResponse resp;
resp = HttpContext.Current.Response;
resp.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
......................
阅读全部 | 2013年10月17日 16:36