Asp.net插入"like"回复评论
本文关键字:quot 回复 评论 like net Asp 插入 | 更新日期: 2023-09-27 18:11:35
我有一个评论系统,我想插入到一个喜欢表一个喜欢点击按钮后。
的问题是,我不知道如何插入喜欢到特定的评论用户被点击。
注释系统是一个asp.net重复器。
<asp:Repeater ID="repRequests" runat="server">
<ItemTemplate>
<div class="media CommentHeader">
<h6 class="media-heading">
<asp:Label ID="HeaderUserCom" Style="font-weight: 600; font-size: 14px;" runat="server" Text='<%#Eval("user_name")%>'></asp:Label>
<asp:Label ID="UserCom" runat="server" Style="font-weight: 600" Text='<%#Eval("comment")%>'></asp:Label>
<asp:Button ID="btnLike" runat="server" Text="Like" OnClick="btnLike_Click1" />
</div>
</ItemTemplate>
/asp:Repeater>
c#(插入点赞到点赞表,其中注释id = @注释id)
protected void btnLike_Click1(object sender, EventArgs e)
{
using (SqlConnection con = new SqlConnection(CS))
{
SqlCommand cmd = new SqlCommand("insert into likes
select users.user_id, comments.comment_id where users.userName = @userName comments.comment_id = @comment", con);
cmd.Parameters.AddWithValue("@userName", Session["userName"].ToString());
cmd.Parameters.AddWithValue("@comment_id", **what to put here ??**);
con.Open();
cmd.ExecuteNonQuery();
}
}
您的OnClick事件需要匹配方法名称。有btnLike_Click
和btnLIke_Click1
。让它们匹配。
要传递评论ID,可以将其设置为按钮上的命令参数。这假设"comment_id"字段在您将中继器绑定到的数据源中可用。
<asp:Button ID="btnLike" runat="server" Text="Like" bOnClick="btnLike_Click" CommandArgument='<%#Eval("comment_id")%>' />
然后在事件处理程序中检索它。
protected void btnLike_Click1(object sender, EventArgs e)
{
Button btn=sender as Button;
if(btn!=null)
{
string comment_id=btn.CommandArgument;
//perform the database insertion here
}
}