473,396 Members | 1,666 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Export to excel in ASP

Hi every one ,
I am using ASP to export database data to excel file. However, the database table contains special charecters like arabic charecters which is not being exported to excel properly. Is there anyway to acheive this.
can any one help ??
I used the below way:

Expand|Select|Wrap|Line Numbers
  1. <%@ Language=VBScript CodePage = "1256"%>
  2. <html dir="rtl">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=windows-1256">
  5. <title>New Page 1</title>
  6. </head>
  7.  
  8. <body>
  9. <%
  10.  
  11. Dim objConn, objRS, strSQL
  12. Dim x, curValue
  13.  
  14. Set objConn = Server.CreateObject("ADODB.Connection")
  15. objConn.Open "DRIVER={Microsoft Excel Driver (*.xls)}; IMEX=1; HDR=NO; "&_
  16.     "Excel 8.0; DBQ=" & Server.MapPath("fff.xls") & "; "
  17. strSQL = "SELECT * FROM A1:Q10000"
  18. Set objRS=objConn.Execute(strSQL)
  19. %>
  20.  
and the result of arabic characters was "???????"

and I changed the code to the below code:
Expand|Select|Wrap|Line Numbers
  1. <% @ CodePage = "1256"%>
  2. <%
  3. Response.Clear
  4. Response.Buffer = true
  5. Response.ContentType = "application/vnd.ms-excel"
  6.  
  7.  
  8. %>
  9. <%
  10. Dim objConn, objRS, strSQL
  11. Dim x
  12. Dim curValue 
  13.  
  14. Set objConn = Server.CreateObject("ADODB.Connection")
  15. objConn.Open "DRIVER={Microsoft Excel Driver (*.xls)}; IMEX=1; HDR=NO; "&_
  16.     "Excel 8.0; DBQ=" & Server.MapPath("excelfile.xls") & "; "
  17. strSQL = "SELECT * FROM A1:Q10000"
  18. Set objRS=objConn.Execute(strSQL)
  19. Response.Write("<table border=""1"">")
  20. Response.Write("<tr>")
  21. ......
  22. ..
  23. ..
but the result was the same


Thanks
Aug 14 '07 #1
1 2619
jhardman
3,406 Expert 2GB
asp by default moves strings as Ascii characters, and since arabic does not use american standard characters (that's what the ASC of ASCII stands for) this is causing the problem. In order to work with other characters you will probably need to use unicode or binary mode. I am not an expert in using those, in fact I generally try to avoid it, but you could look up "ado.stream" which allows you to open and manipulate non-ascii data. good luck.

Jared
Aug 16 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: Matt | last post by:
I have an ASP page that calls ASP routines that I created that execute a database query and return the results to a recordset. I then iterate through the recordset and display the data in a table....
5
by: Maria L. | last post by:
Hi, I need to export the content of a DataGrid (in Windows application in C#), into an Excel spreadsheet. Anyone knows how to do this? Any code snippets would help! thanks a lot, Maria
2
by: Siu | last post by:
Hi, I use the following code to export and import a file Excel from resp. into a Web page with the following code: //EXPORT Response.Clear(); Response.Buffer = true; Response.ContentType =...
6
by: Elena | last post by:
I'm trying to export data to an Excel worksheet. I can export the data in the cell values perfectly. I need the code to change a header and footer for the worksheet, not for the columns. Is...
13
by: Hemant Sipahimalani | last post by:
The following piece of code is being used to export HTML to excel. HttpContext.Current.Response.ContentType = "application/vnd.ms-excel"...
5
by: Simon | last post by:
Dear reader, With the export command you can export a query to Excel. By activate this command a form pop's up with the following text:
1
by: smaczylo | last post by:
Hello, I've recently been asked to work with Microsoft Access, and while I feel quite comfortable with Excel, I'm at a complete loss with databases. If someone could help me with this issue I'm...
1
by: CoolFactor | last post by:
MY CODE IS NEAR THE BOTTOM I want to export this Access query into Excel using a command button on an Access form in the following way I describe below. Below you will find the simple query I am...
3
by: =?Utf-8?B?YzY3NjIyOA==?= | last post by:
Hi all, I have a question for you. I have a .csv file which has many lines of data. Each line has many data fields which are delimited by ",". Now I need to extract part of data from this...
2
hemantbasva
by: hemantbasva | last post by:
Note We need to have a template on server for generating report in multiple sheet as we do not had msoffice on server moreover this require a batch job to delete excel file created by the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.