|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Making an Excel FileI have a web site that is accessing the Excel Reference: Dim Excel As New Excel.Application When this line of code is executed I get the following error. ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user. 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 appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access. I have attempted what is suggested with no success. Any Suggestions will be greatly appreciated. All I am doing is making an Excel File out of a dataset. Chuck I don't recommend COM interop with Excel from ASP.NET, but if you're
determined to make it work, the details are here along with some better options: http://SteveOrr.net/articles/ExcelExport.aspx Show quoteHide quote "Charles A. Lackman" <Char***@CreateItSoftware.net> wrote in message news:OkMk6tx3FHA.3296@TK2MSFTNGP09.phx.gbl... > Hello, > > I have a web site that is accessing the Excel Reference: > > Dim Excel As New Excel.Application > When this line of code is executed I get the following error. > > ASP.NET is not authorized to access the requested resource. Consider > granting access rights to the resource to the ASP.NET request identity. > ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 > or > Network Service on IIS 6) that is used if the application is not > impersonating. If the application is impersonating via <identity > impersonate="true"/>, the identity will be the anonymous user (typically > IUSR_MACHINENAME) or the authenticated request user. 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 > appropriate user or group. Highlight the ASP.NET account, and check the > boxes for the desired access. > > I have attempted what is suggested with no success. > > Any Suggestions will be greatly appreciated. All I am doing is making an > Excel File out of a dataset. > > Chuck > > On Tue, 1 Nov 2005 11:36:02 -0800, "Charles A. Lackman" <Char***@CreateItSoftware.net> wrote: ¤ Hello,¤ ¤ I have a web site that is accessing the Excel Reference: ¤ ¤ Dim Excel As New Excel.Application ¤ When this line of code is executed I get the following error. ¤ ¤ ASP.NET is not authorized to access the requested resource. Consider ¤ granting access rights to the resource to the ASP.NET request identity. ¤ ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or ¤ Network Service on IIS 6) that is used if the application is not ¤ impersonating. If the application is impersonating via <identity ¤ impersonate="true"/>, the identity will be the anonymous user (typically ¤ IUSR_MACHINENAME) or the authenticated request user. 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 ¤ appropriate user or group. Highlight the ASP.NET account, and check the ¤ boxes for the desired access. ¤ ¤ I have attempted what is suggested with no success. ¤ ¤ Any Suggestions will be greatly appreciated. All I am doing is making an ¤ Excel File out of a dataset. In addition to what Steve mentioned: INFO: Considerations for Server-Side Automation of Office http://support.microsoft.com/default.aspx?scid=kb;en-us;257757 Paul ~~~~ Microsoft MVP (Visual Basic)
Other interesting topics
maximum datagrid row count?
Pre compiling web site in 2.0 How can I stop ASPX file rendering in Page_Load event? server.transfer Upload if files from client PC or local network Code reuse, code behind, and can't inherit since already inherits Page Finding a control VS2005 - unable to create a website in IIS progrss bar that shows that status of processes User controls breaking in designer |
|||||||||||||||||||||||