We are using the Infragistics.Web.Mvc.Documents.Excel.dll to build a large Excel.
It appears this assembly is using the C:\ProgramData\IsolatedStorage folder during the file creation process on on the Workbook.Save(Response.OutputStream).
Is there a web.config setting we can use to set the target folder to be a sub-folder under C:\ProgramData\IsolatedStorage as this is a machine shared folder and we get conflicts with other apps using that folder.
Hi Mark,
The IsolatedStorage is a data storage mechanism provided by the .NET Framework and it is not possible to change the actual directory that s used. What can be done is increase the storage quota, and this should be done on application level via C# code.
Please see Quotas for Isolated Storage to get you started.
Hi Hristo,
Thank you for looking into this. We're hoping there is some config based resolution that can be found.
Thank You,
-Mark J Brooks
I am investigating if this may be changed by our library or by .NET framework setting. Will keep you posted.