Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Code-behind page cannot "see" any items/controls declared in the aspx page

Here's a my Default.aspx page (with unnecessary details excised):

    <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>

Here's the code-behind (with unnecessary details excised):

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();
            }
        }
    }
}

This page/code-behind is top level, it's not it any folder or anything. Also this project is an ASP.NET Web Application that is borrowing code from a legacy web site project. I didn't "Add Existing" to any files, all files were "Add New" to prevent compatibility problems. Tried this, didn't work.

In the code-behind, every attempt to manipulate items declared in the aspx page results in an error like:

'_Default' does not contain a definition for 'pnlInvalidCredentials'

or

The name 'txtUsername' does not exist in this context.

like image 687
kmarks2 Avatar asked Feb 14 '12 18:02

kmarks2


3 Answers

Since I refreshed this page you've removed the line with the page directive at the top of your html file, but it looked like you maybe need to include the namespace.

Try:

Inherits="webapp._Default" instead of Inherits="_Default"

like image 171
Eden Avatar answered Sep 30 '22 08:09

Eden


Try changing the "CodeBehind" attribute in your Default.aspx page to "CodeFile."

like image 25
Tim S. Van Haren Avatar answered Sep 30 '22 07:09

Tim S. Van Haren


If this is a web application, sometimes it happens that the *.designer.cs file is not updated with your latest changes.

Try this:

  • Remove the panel (just cut it)
  • Save
  • Undo
  • Save again (this will regenerate the *.designer.cs file)
  • Rebuild

Edit:

Other possibilities that will fail the regeneration of the *.designer.cs file are syntax errors such as missing end tags in your aspx pages.

like image 38
Candide Avatar answered Sep 30 '22 08:09

Candide