0

当我尝试从他们的 ID 访问我的文本框时,我的点击事件显示错误“当前上下文中不存在名称 login_password 和 login_username”。请帮助我识别错误,因为我只是一个初学者。

点击事件:

protected void LogIn_Clicked(object sender, EventArgs e)
    {
        string usern = "abc";
        string pass = "123";

        if (login_username.Text == usern && login_password.Text == pass)
        {
            Response.Redirect("Default.aspx");

        }
        else
        {

               label1.Text = "LogIn";                            
        }

    }
}

登录表单:

<form id="login" runat="server">
<h1 style = "Background-color: deepskyblue;">
    Log in to your account!</h1>
<p class="register">
    <a style = "color: deepskyblue;" href="Login.aspx?logoff=true">Logoff</a>
</p>
<div>
    <label for="login_username">
        Username</label>
    <input type="text" name="username" id="login_username" class="field required" title="Please provide your username" onclick="return login_username_onclick()" />
</div>
<div>
    <label for="login_password">
        Password</label>
    <input type="password" name="password" id="login_password" class="field required"
        title="Password is required" />
</div>
<div class="submit">
    <asp:Button ID="Button1" Text="Log in" runat="server" OnClick="LogIn_Clicked" 
        BackColor="#00B2EE" ForeColor="White" />
4

2 回答 2

1

这些不是 Asp.net 控件。添加runat="server"属性:

<input type="text" name="username" id="login_username" class="field required" title="Please provide your username" onclick="return login_username_onclick()" runat="server"/>

或者您可以添加 Asp.net 控件:

<asp:TextBox runat="server" ID="login_username" CssClass="field required" ToolTip="Please provide your username"></asp:TextBox>
于 2013-09-12T20:51:57.970 回答
0

您输入的用户名和密码仅为 html - 它们需要一个 runat="server" 标记才能将它们放入后面的代码中。通常的方法是使用 asp:Textbox。

于 2013-09-12T20:52:59.813 回答