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 ...