我尝试将电子邮件字段中的数据发送到代码,然后使用它。但是,数据永远不会到达代码,我什至尝试设置断点,也永远不会在断点处停止。
表格-
<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");
}
}
答案 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);
}