Posted on: 6/18/2014 1:46:31 PM | Views : 388

Hello,
I want to export clientdata from a database to an excel file.
Currently I am using this code:
protected void Button_excelExport_Click(object sender, EventArgs e) { DataSet ds = Klanten.GetAllClientsForExcel(); ExcelLibrary.DataSetHelper.CreateWorkbook("C:/Users/Roy/Desktop/newdoc.xls", ds); } The dataset has all the correct information, this works perfectly. However I want to let the user choose where he wants to save the file and also change the name. I've seen this in form applications before but I have no clue how to do it here. Thanks in advance

Go to the complete details ...