在此示例中,我希望在按下 ID 为“PostCommentsButton”的按钮时触发此 ContentTemplate 并在 ID 为“CommentListView”的 ListView 中再次迭代所有内容。但这在这里不起作用。我想念什么?
在此示例中,我从文本字段中获取新文本,并在后面的代码中将这些来自文本字段的新内容放入 ado.net 中,并将这些新内容保存在数据库中。问题是当按下 UpdatePanel 中的按钮时,新信息没有与其他内容一起出现在列表中。只有当我重新启动页面时它才会出现。我希望再次迭代 UpdatePanel 中的 ListView,以便在按下按钮时使用 AJAX 从文本字段中获取这些新内容。我应该怎么办 ?
asp代码:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="PostCommentsButton" />
</Triggers>
<ContentTemplate>
<asp:ListView ID="CommentListView" runat="server" DataSource= '<%# Eval("Comments") %>'>
<ItemTemplate>
<div class="postComments">
<span class="authorComment"><%# Eval("Author") %></span>
:
<span class="commentContent"><%# Eval("Message") %></span>
</div>
</ItemTemplate>
</asp:ListView>
</ContentTemplate>
</asp:UpdatePanel>
后面的代码:
protected void PostsListView_ItemCommand(object sender, ListViewCommandEventArgs e)
{
//commandName is for recognize the clicked button
if (e.CommandName == "postComment")
{
//get the comment from textbox from current listview iteration
BlogProfileEntities blogProfile = new BlogProfileEntities();
var commentBox = e.Item.FindControl("AddCommentTextbox") as TextBox;
var hiddenFieldPostID = e.Item.FindControl("CurrentPostIDHiddenField") as HiddenField;
string text = commentBox.Text;
var postID = hiddenFieldPostID.Value;
Comment newComment = new Comment()
{
Message = text,
PostID = int.Parse(postID),
Author = Membership.GetUser().UserName
};
blogProfile.Comments.Add(newComment);
blogProfile.SaveChanges();