代码隐藏页面无法“查看”aspx页面中声明的任何项目/控件

时间:2012-02-14 18:45:14

标签: c# asp.net .net compiler-errors code-behind

这是我的Default.aspx页面(删除了不必要的细节):

    <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <div id="login">
    <!-- a bunch of markup has been removed, so this html will appear wrong and not valid, but it actually is -->
    <table align="center" width="80%" cellpadding="0" cellspacing="0" class="loginBg">
        <tr>
            <td colspan="2"><img src="images/Login_top.jpg" /></td>
        </tr>
        <asp:Panel runat="server" ID="pnlLoginIn">
        <tr>
            <td style="padding-left:20px;">Username</td>
            <td style="padding-right:15px;" align="right"><asp:TextBox id="txtUsername" runat="server" /></td>
            <asp:RequiredFieldValidator runat="server" ID="rfvUserName" ErrorMessage="*" ControlToValidate="txtUsername" ValidationGroup="credentials" Display="Dynamic" />
        </tr>
        <tr>
            <td style="padding-left:20px;">Password</td>
            <td style="padding-right:15px;" align="right"><asp:TextBox ID="txtPassword" TextMode="Password" runat="server" /></td>
                <asp:RequiredFieldValidator runat="server" ID="rfvPassword" ErrorMessage="*" ControlToValidate="txtPassword" ValidationGroup="credentials" Display="Dynamic" />
        </tr>
        <!-- BUT THE PANEL IS HERE?! -->
        <asp:Panel ID="pnlInvalidCredentials" runat="server">
        <tr>
            <td colspan="2" align="center" style="color: Red;"><asp:Literal runat="server" ID="litInvalidCredentials" Text="Invalid Username or Password" />
            </td>
        </tr>
        </asp:Panel>
<!-- more code has been removed down here...I just left the block commented in where the pnlInvalidCredential lives -->
    </asp:Content>

这是代码隐藏(删除了不必要的细节):

namespace webapp
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            (webapp.MasterPages.MasterPage)Page.Master).headerImage = "default";
            this.Master.headerImage = "default";

            if (!Page.IsPostBack)
            {
                this.pnlInvalidCredentials.Visible = false; // error is here
                this.BindPressRoomItem();
            }
        }
    }
}

这个页面/代码隐藏是顶级的,它不是任何文件夹或任何东西。此项目也是一个ASP.NET Web应用程序,它从遗留的Web 站点项目中借用代码。我没有“添加现有”到任何文件,所有文件都是“添加新”以防止兼容性问题。尝试this,没有用。

在代码隐藏中,每次尝试操作aspx页面中声明的项都会导致如下错误:

  

'_ Default'不包含'pnlInvalidCredentials'

的定义

  

此上下文中不存在名称“txtUsername”。

4 个答案:

答案 0 :(得分:4)

由于我刷新了这个页面,你已经删除了html文件顶部带有page指令的行,但看起来你可能需要包含命名空间。

尝试:

Inherits =“webapp._Default”而不是Inherits =“_ Default”

答案 1 :(得分:3)

尝试将Default.aspx页面中的“CodeBehind”属性更改为“CodeFile”。

答案 2 :(得分:1)

如果这是一个Web应用程序,有时会发生* .designer.cs文件未使用您的最新更改进行更新。

试试这个:

  • 取下面板(只需剪切)
  • 保存
  • 撤消
  • 再次保存(这将重新生成* .designer.cs文件)
  • 重建

编辑:

* .designer.cs文件重新生成失败的其他可能性是语法错误,例如aspx页面中缺少结束标记。

答案 3 :(得分:0)

我遇到了同样的问题。为我修好的是:

  • 在我的代码隐藏文件中,该类被定义为“公共类”。将其更改为“Partial Class”,然后单击“Convert to Web Application”重新生成'Designer'文件并修复问题。