当前上下文中不存在文本框

时间:2013-11-01 23:09:05

标签: c# asp.net

我确信这个问题很多,但我的档案中找不到答案。 这是我的ASP代码:

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="RCC_ChangePassword.ascx.cs" Inherits="Regal.Web._Tester.RCC.RCC_ChangePassword" %>
    <div id="modal-password-change">
        <div class="modal-contents">

            <h1>Change Password</h1>
            <div class="intro">Use the form below to change the password for your RCC account. Use the new password next time you log in.</div>

            <asp:Label ID="CurPass" Text="Current Password" runat="server"></asp:Label>
            <asp:Textbox  id="CurrentPass" runat="server" CssClass="required"></asp:Textbox>

            <asp:Label ID="NwPass" Text="New Password*" runat="server"></asp:Label>
            <asp:Textbox  id="NewPass" runat="server" CssClass="required"></asp:Textbox>

            <asp:Label ID="CnfPass" Text="Confirm Password" runat="server"></asp:Label>
            <asp:Textbox  id="ConfirmPass" runat="server" CssClass="required"></asp:Textbox>

            <h4>Your password must include ALL of the following</h4>
            <ul class="notes">
                <li>At least 8 characters (not more than 16 characters)</li>
                <li>At least one number</li>
            </ul>

            <asp:Button ID="submit" Cssclass="btn blue wide" runat="server" Text="Save Changes" OnClick="btnSubmit_click"></asp:Button>

        </div>

    </div><!-- #modal-password-change .modal -->

以下是我收到错误的行:

 // Change actual password for the new password    
                        String testPass1 = NewPass.Text;    
                        if (regalMemberRepo.ChangePassword(oUser.Email, oUser.Password, testPass1))
你可以看到我的代码有什么奇怪之处吗? 提前谢谢。

1 个答案:

答案 0 :(得分:1)

这经常发生在VS.看看设计器文件,看看VS是否在那里为文本框创建了一个条目?确保您没有其他具有类似声明的文件。

很多时候,解决此问题的最佳方法是删除,重新创建并重新命名表单。我们不应该自己编辑设计器文件。