我有一个简单的任务 - 在复选框状态更改时更改页面链接 - 但我是ASP.NET的新手并且遇到了一些麻烦。
我可以使用HtmlControl和JavaScript来做同样的事情:
<script type="text/javascript" language="javascript">
function checkbox_onChanged(checked) {
if (checked) {
document.location = '?type=request_in&show=all';
}
else {
document.location = '?type=request_in&show=unapproved';
}
}
function checkbox_onLoad(checkbox) {
checkbox.checked = true;
}
</script>
<form action="" method="get">
<input type="checkbox" name="checkbox"
onload="checkbox_onLoad(this)"
onchange="checkbox_onChanged(this.checked)" />Show all
</form>
但我想将其隐藏在用户之外。所以我这样做:
<asp:CheckBox runat="server" ID="check"
OnCheckedChanged="check_CheckedChanged"
AutoPostBack="True" Text="Show all" />
protected void check_CheckedChanged(object sender, EventArgs e)
{
Response.Redirect(String.Format("{0}?type=request_in&show={1}", Request.Path,
checkViewRequestIn.Checked ? "all" : "unapproved"));
}
protected void Page_Load(object sender, EventArgs e)
{
var show = Request["show"];
if (!String.IsNullOrEmpty(show) && String.Equals(show, "all"))
{
checkViewRequestIn.Checked = true;
}
}
但似乎加载时检查状态更改会再次引发事件,并且始终会检查复选框!
Ans另一个问题 - 有没有其他方法可以重定向到同一页面而不提供文件名?我的意思是在JavaScript中 - 只提供所需的变量?
答案 0 :(得分:2)
您可以从ASP.NET复选框中调用客户端“checkbox_onChanged”,只需在Page_Load中添加“onchange”,例如:
protected void Page_Load(object sender, EventArgs e)
{
check.Attributes["onchange"] = "checkbox_onChanged(this.checked)";
}
查看来源,您将看到HTML中发生了什么..