0

我有一个新闻页面可以添加女巫评论。如果我单击评论,我会转到评论页面,我可以在其中选择删除评论。如果我删除评论,我想返回新闻页面并刷新页面,以便评论消失。

我尝试添加它,但没有达到删除功能

<asp:Button runat="server" ID="btnRemoveComment" Text="Ta bort" OnClientClick="JavaScript: window.history.back(1); return false;" />

评论页.aspx

<asp:Button runat="server" ID="btnRemoveComment" />

评论页.aspx.cs

protected override void OnLoad(EventArgs e)
{
  btnRemoveComment.Click += btnRemoveComment_Click;
}



private void btnRemoveComment_Click(object sender, EventArgs e)
{
  CommentFactory.RemoveComment(CurrentPage);
}
4

2 回答 2

1

一个按钮不能应用两个事件,它是 javascript 或代码隐藏。尝试在代码隐藏中重定向并使用 Ajax 进行动态更新。

于 2013-01-03T09:49:23.390 回答
0

我不认为在新闻页面和评论页面之间来回切换是可以的。尝试这个

private void btnRemoveComment_Click(object sender, EventArgs e)
{
  CommentFactory.RemoveComment(CurrentPage);
  Response.Redirect("news.aspx");
}
于 2013-01-03T09:47:29.447 回答