creating excel file
hi all,
i am develoing a web project. In my project users upload a excel file than the excel file is read and converted to the dataset than this dataset is saved to the sql server.. for this i am saving file to a directory in my web aplication. but there is a problem, i have to set "write" access to iis user for this directory.
OleDbConnection
conn =newOleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + ExcelFile +"; Extended Properties=Excel 8.0;");i use the code above for to connect and get datas. i want to save file to buffer and read from there; so i dont have to set any permission for this. Is there a way to that?

