我有一个新闻页面可以添加女巫评论。如果我单击评论,我会转到评论页面,我可以在其中选择删除评论。如果我删除评论,我想返回新闻页面并刷新页面,以便评论消失。
我尝试添加它,但没有达到删除功能
<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);
}