View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
ajaykrishna[_2_] ajaykrishna[_2_] is offline
external usenet poster
 
Posts: 1
Default Excel data format problem (Urgent)

Hi,

I'm downloading grid data to excel document using following code
snippet:

Response.Clear()
Response.Buffer = True
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader("content-disposition",
"attachment;filename=CDSInfo.csv")
Response.Charset = ""
Me.EnableViewState = False
Dim oStringWriter As New System.IO.StringWriter()
Dim oHtmlTextWriter As New System.Web.UI.HtmlTextWriter(oStringWriter)
Grid1.RenderControl(oHtmlTextWriter)
Response.Write(oStringWriter.ToString())
Response.End()

I'm getting everything OK except one problem. I have one column of
varchar type which contains numeric values (00002321,009860 ..).The
output result in the excel, this columns is appearing with all the
leading zeros trimmed off i.e. 00002321 is displayed in excel as 2321.
What should I do to get the original value without any trim i.e.
00002321 ?

Thanks,
Ajay


---
Message posted from http://www.ExcelForum.com/