Aspx表单不会将数据传递到文件后面的代码

时间:2018-06-27 08:58:14

标签: c# asp.net .net visual-studio

我尝试将电子邮件字段中的数据发送到代码,然后使用它。但是,数据永远不会到达代码,我什至尝试设置断点,也永远不会在断点处停止。

表格-

<form class="cd-form"  runat="server"  >

<label class="cd-label" for="email" runat="server">Console</label>

<input type="text" class="cd-email" name="email" id="email" runat="server" placeholder="Enter address to test connection">

<input type="submit" class="cd-submit" value="submit" runat="server" id="submit" onserverclick="Accept"  />

<div class="cd-loading"></div>

</form>

文件后面的代码-

protected void Accept(object sender,EventArgs e)
{

    String a = email.Value;

    if( email.Value == "a@a.com" )

    {

        Response.Redirect("README.aspx");

    }

 }

2 个答案:

答案 0 :(得分:0)

更改

Email.value

email.text

答案 1 :(得分:0)

更改您的行  字符串a = email.Value; 至 字符串email.text; 受保护的void接受(对象发送者,EventArgs e) {

floodFill(x, y - 1, target_col, replace_col);
floodFill(x - 1, y, target_col, replace_col);
floodFill(x, y + 1, target_col, replace_col);
floodFill(x + 1, y, target_col, replace_col);

}