I am using excel object in my server side code. But, I am getting Access denied error for the user asp.net . I gave full permission for the Asp.net account on the directory where I am running the application.Do I need to change any security permission for excel?? Here is my code and the exception that I am getting.private void SetColumnWidthExcel(string filePath){
//=================
// Add by wujian in 2003-7-14 for set each cells of excel width
// First I will get Excel Object via OleDbConnection and second I will set column-width
ExcelApplication excel = new ExcelApplication();
Microsoft.Office.Interop.Excel.Workbook wb = excel.Workbooks.Open(filePath,Missing.Value,Missing.Value,Missing.Value,
Missing.Value,Missing.Value,Missing.Value,Missing.Value,Missing.Value,Missing.Value,Missing.Value,Missing.Value,Missing.Value,
Missing.Value,Missing.Value);
Microsoft.Office.Interop.Excel.Worksheet ws = (Microsoft.Office.Interop.Excel.Worksheet)wb.Worksheets[0];
ws.Cells.UseStandardWidth = "500";
//excel.Worksheets.Add()
//=================
}ERROR 
-------- 
Access is denied. 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.UnauthorizedAccessException: Access is denied. The ASP.NET process is not authorized to access the requested resource. For security reasons the default ASP.NET process identity is '{machinename}\ASPNET', which has limited privileges. Consider granting access rights to the resource to the ASP.NET process identity. To grant ASP.NET write access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the "{machinename}\ASPNET" user. Highlight the ASP.NET account, and check the Write box in the Allow column. Source Error: 
Line 1163: ExcelApplication excel = new ExcelApplication();
I import some namespaces:
using Microsoft.Office.Interop.Excel;
using ExcelApplication = Microsoft.Office.Interop.Excel.Application;
using System.Reflection;