1

ASP.NET は初めてで、Web ページにレポート ビューアー オブジェクトを作成しようとしています。デフォルトの認証をサーバーに渡す必要があります。私が使用しているコードは次の場所にあります: http://msdn.microsoft.com/en-us/library/microsoft.reporting.webforms.ireportservercredentials.aspx?cs-save-lang=1&cs-lang=csharp#code-スニペット-4

レポート ビューアーのコードは次のとおりです。

<%@ Page Language="C#" AutoEventWireup="True" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication3.WebForm1" %>

<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:ScriptManager runat="server">   </asp:ScriptManager>
        <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt" ProcessingMode="Remote" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt">
            <ServerReport ReportPath="hoopstatist/Reports/Shooting Analysis" ReportServerUrl="https://rs2k1201.discountasp.net/reports" />
        </rsweb:ReportViewer>

    </div>
    </form>
</body>
</html>

エラーのあるコードは次のとおりです。

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Init(object sender, EventArgs e)
    {
        //It has issues here for ReportViewer1
        ReportViewer1.ServerReport.ReportServerCredentials =
            new MyReportServerCredentials();


    }
}

エラーは次のとおりです。

Error   1   The name 'ReportViewer1' does not exist in the current context  c:\users\nile\documents\visual studio 2012\Projects\WebApplication3\WebApplication3\WebForm1.aspx.cs    18  9   WebApplication3
4

1 に答える 1

0

.designer.cs ファイルをチェックして、名前空間が一致していることを確認するか、存在しない場合は削除してください。これにより、インテリセンスやビルダーが機能しなくなることがあります。

于 2018-03-30T22:18:03.820 に答える