I have a SSRS 2008 R2 report running on the reporting server. When I access the report using the Report Manager or Web Service URL it works ok.\[code\]http://mycomputer/ReportServer\[/code\]and \[code\]http://mycomputer/Reports\[/code\]When I add a ReportViewer to a WebForms web site and point it to \[code\]http://mycomputer/reportserver \[/code\]with a report path to my report it gives me an access denied error when running the web site using VS.net's web server.The permissions granted to user 'mycomputer\myusername' are insufficient for performing this operation. (rsAccessDenied)The following is the exact code I'm using in the aspx page.\[code\]<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager><rsweb:ReportViewer ID="ReportViewer1" runat="server" ProcessingMode="Remote" Font-Names="Verdana" Font-Size="8pt" InteractiveDeviceInfos="(Collection)" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt" Width="712px"> <ServerReport ReportPath="/MyReports" ReportServerUrl="http://mycomputer/reportserver" /></rsweb:ReportViewer>\[/code\]mycomputer \ myusername is an Adminstrator on the machine. I also added it as an Administrator in the ReportManager.I am running it using IE in Administrator mode.What else could be causing the access denied issues?I've read other people having issues, but most of them are not for 2008R2 so I haven't been able to figure out how to try what they did. There is no IIS to configure and no IUSR to give access to the reports.SSRS logs just show the same error message without any other information.