Report works in Firefox, but doesn't in IE

Discussion in 'ASP.NET / ASP.NET Core' started by asus, Feb 18, 2011.

  1. asus

    asus Programming my way out of corp. America forever.

    After publishing the report to my hosted account, when I try to display it in IE I get errors, but it works fine in Firefox. Does anyone have any idea why this would happen?

    My code:
    <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana"
    Font-Size="8pt" Height="768px" Width="1024px">
    <LocalReport ReportPath="School\Reports\FamilyGuarantor.rdlc">
    <DataSources>
    <rsweb:ReportDataSource DataSourceId="ObjectDataSource1"
    Name="DSGuarantor_Guarantor" />
    <rsweb:ReportDataSource DataSourceId="ObjectDataSource2"
    Name="DSStudent_Student" />
    </DataSources>
    </LocalReport>
    </rsweb:ReportViewer>
    <asp:ObjectDataSource ID="ObjectDataSource2" runat="server"
    SelectMethod="GetData"
    TypeName="DSStudentTableAdapters.StudentTableAdapter">
    </asp:ObjectDataSource>
    <asp:ObjectDataSource ID="ObjectDataSource1" runat="server"
    SelectMethod="GetData" TypeName="DSGuarantorTableAdapters.GuarantorTableAdapter">
    </asp:ObjectDataSource>




    I accessed the errors from IE, shown below:

    Webpage error details

    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)
    Timestamp: Fri, 18 Feb 2011 23:16:07 UTC


    Message: Permission denied
    Line: 1
    Char: 1
    Code: 0
    URI: http://mysubdomain.mydomain.com/mys...chSession0&CacheSeed=Fri Feb 18 18:15:04 2011


    Message: Permission denied
    Line: 285
    Char: 1
    Code: 0
    URI: https://mysubdomain.mydomain.com/mysubdomain/School/Reports/StorePurchases.aspx


    Message: Access is denied.

    Line: 5
    Char: 1
    Code: 0
    URI: http://mysubdomain.mydomain.com/mys...DocMap=true&SearchStartPage=0&LinkTarget=_top
     

Share This Page