User-1233570648 posted
I am currently developing a webpage which saves the data in a Excel file using Response.contentType This is working properly in the PC. But actually the page I have developed is for PDA (Pocket PC O2 with os 2003) I am properly saving the file as Pocket Excel
(with extension .pxl). When I am trying to open the pocket excel file, it is giving an error "Invalid file format". I want to know is any data conversion to be given to save as pocket excel file (I am only saving some simple numeric data.) The code I have
used is Response.ContentType = "application/vnd.ms-excel" Response.AddHeader("Content-Disposition", "attachment;filename="Sample.pxl") I need a quick help. Thanks in advance Barathi