Write an Array to Excel
-
could any one please tell how to export an array to an Excel file in web application. Actually my requiremnt id to export data(array) from flex to excel. If I get the method for writing array to excel, i think i can very well meet my requirment. please reply
-
could any one please tell how to export an array to an Excel file in web application. Actually my requiremnt id to export data(array) from flex to excel. If I get the method for writing array to excel, i think i can very well meet my requirment. please reply
Loop through your array and write each row to excel.
Navaneeth How to use google | Ask smart questions
-
Loop through your array and write each row to excel.
Navaneeth How to use google | Ask smart questions
Can u give me an example? I want to write the array to excel ( get it saved in excel) not just using Response like given below //Response.ContentType = "application/vnd.xls"; //System.IO.StringWriter stringWrite = new System.IO.StringWriter(); //System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite); //stringWrite.Write("hai"); //Response.Write(stringWrite.ToString()); Regards, KP
modified on Tuesday, November 11, 2008 5:39 AM