Hi,
I have installed the evaluation of .Cells on my laptop and my web server. The code works fine on my laptop, but the same code is throwing a generic Exception on my web server. Can you show me some more specific error trapping example? I believe the error is occurring when I try and open a workbook located on a different server:
Workbook workbook = new Workbook(); // the Aspose workbook object
try
{
workbook.Open(ViewState["FilePath"].ToString(), FileFormatType.Excel2003);
}
catch (Exception)
{
return false;
}
Thanks.