|
|
|
export gridview to excel เป็นภาษาไทยไม่ได้ค่ะ 2 gridview โค้ดเหมือนกันแต่อ่านภาษาไทยได้แค่อันเดียว งงมากเลย |
|
|
|
|
|
|
|
มี gridview อยู่ 2 ตาราง เขียนโค้ดเหมือนกันทุอย่าง
แต่ตารางหนึ่งกลับแสดงผลเป็นภาษาไทยไม่ได้
ไม่เข้าใจว่าผิดตรงไหน ช่วยดูให้หน่อยนะคะ ทั้งสองสองตาราง copy แปะเหมือนกันเลยค่ะ
Code (C#)
protected void btnExcel_Click(object sender, ImageClickEventArgs e)
{
Response.ClearContent();
Response.Buffer = true;
Response.AddHeader("content-disposition", string.Format("attachment; filename={0}", "Employees.xls"));
Response.Charset = "";
Response.ContentType = "application/vnd.ms-excel";
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
MyGridView.AllowPaging = false;
MyGridView.DataBind();
MyGridView.HeaderRow.Style.Add("background-color", "#FFFFFF");
for (int i = 0; i < MyGridView.HeaderRow.Cells.Count; i++)
{
MyGridView.HeaderRow.Cells[i].Style.Add("background-color", "#507CD1");
}
int j = 1;
foreach (GridViewRow gvrow in MyGridView.Rows)
{
gvrow.BackColor = Color.White;
if (j <= MyGridView.Rows.Count)
{
if (j % 2 != 0)
{
for (int k = 0; k < gvrow.Cells.Count; k++)
{
gvrow.Cells[k].Style.Add("background-color", "#EFF3FB");
}
}
}
j++;
}
MyGridView.RenderControl(htw);
Response.Write(sw.ToString());
Response.End();
}
protected void btnWord_Click(object sender, ImageClickEventArgs e)
{
MyGridView.AllowPaging = false;
MyGridView.DataBind();
Response.ClearContent();
Response.AddHeader("content-disposition", string.Format("attachment; filename={0}", "Employees.doc"));
Response.Charset = "";
Response.ContentType = "application/ms-word";
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
MyGridView.RenderControl(htw);
Response.Write(sw.ToString());
Response.End();
}
Tag : .NET, C#
|
|
|
|
|
|
Date :
2012-09-28 14:46:16 |
By :
moosee |
View :
4590 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้ละจ้าาาาา
เป็นเพราะว่าไปเลือก Collection ไว้ใน database
หาแทบแย่แน่ะ
|
|
|
|
|
Date :
2012-09-28 15:51:28 |
By :
moosee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เยี่ยมครับ
|
|
|
|
|
Date :
2012-09-28 19:57:14 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เลือก Collection ไว้ใน database แล้วแก้ยังไงอ่ะ
|
|
|
|
|
Date :
2014-05-19 10:01:12 |
By :
NoknoiVB |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|