我相信这个问题经常出现,但是我在你的存档中没有找到答案。下面是我的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))
你能看出我的代码有什么奇怪的地方吗?2预先谢谢你。
2条答案
按热度按时间yi0zb3m41#
我在使用VS时经常遇到这种情况。请查看设计器文件,看看VS是否在其中为文本框创建了一个条目?请确保没有其他文件具有类似的声明。
很多时候,解决这个问题的最好方法是删除、重新创建和重新命名窗体。我们不应该自己编辑设计器文件。
uqdfh47h2#
以编程方式添加
TextBox
后,我在尝试访问其Text
属性时收到了此错误。