原文来源:http://blog.crowe.co.nz/archive/2006/03/02/589.aspx
If you add a reference to Microsoft Excel and then try to use it within your ASP.NET application you may receive the following error.
Server Error in '/excel' Application.
Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005.
The problem is that by default Microsoft Excel as a COM object can only activated by the following accounts:
AdministratorSystemInteractiveWhen you are running your ASP.Net account on Windows XP your web application is running as the ASPNET account.
The way to resolve this issue is to edit the DCOM configuration settings for the Microsoft Excel Application object.
Windows XP
Windows 2003 Server
Click the "Add" button to add a new account to the list.On the dialog that is displayed click the Locations button (this is because by default your domain will be selected and we need a local account) In this dialog scroll the list to the top (sometimes the first item is not visible) but scroll to the top and select the first item which is your computer name. In the list below "CCROWE" is the name of my computer. Click the OK buttonOn the dialog that is displayed enter "ASPNET" as the account name (make sure location is set to the name of the computer that IIS is on) on Windows XP or if you are running on Windows 2003 Server you must enter the account that the Application Pool is running as, by default "Network Service"Windows XP
Windows 2003 Server
Note: A quicker way on Windows XP is to just enter the computer name and the account so in my case that would be: ccrowe\ASPNET
Click the OK button Now make sure you select the following options for the "ASP.NET Machine Account" or the account that is the application pool identity ( by default Network Service) Local Launch : AllowRemote Launch : [blank]Local Activation : AllowRemote Activation : [blank]These settings can be seen below:
Windows XP
Windows 2003 Server
Click the OK button and test your web application again and it should work fine.
Note: Remember if you are running on Windows 2003 Server you must use the application pool identity as the account and not the ASPNET account.
转载于:https://www.cnblogs.com/romanticoding/archive/2009/02/11/1388500.html
相关资源:数据结构—成绩单生成器