|
|
|
สอบถามวิธี Exce Stored Procedure และนำข้อมูลมาแสดงในไฟล์ Excel (VB.NET) |
|
|
|
|
|
|
|
ตอนนี้ทำวิธี Exce Stored Procedure และนำข้อมูลมาแสดงในไฟล์ Excel ได้แล้วแต่ว่าข้อมูลในไฟล์ที่เป็นภาษาไทยแสดงเป็นภาษาต่างดาว มีวิธีแก้ไขอย่างไรบ้างคะ
|
|
|
|
|
Date :
2019-08-27 14:14:32 |
By :
znorei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หาวิธีแก้ภาษาไทยเป็นภาษาต่างดาวได้แล้วค่ะ
Code (VB.NET)
Response.ClearContent()
Response.AddHeader("content-disposition", "attachment;filename=FileExcelName.xls")
Response.ContentType = "application/ms-excel"
Response.ContentEncoding = System.Text.Encoding.Unicode
Response.BinaryWrite(System.Text.Encoding.Unicode.GetPreamble())
|
|
|
|
|
Date :
2019-08-27 14:27:18 |
By :
znorei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2019-08-27 15:37:40 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|