本文介绍了当我点击回复链接按钮时,我正在使用数据列表控件,我必须在事件中处理一些代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
用户名费用返还答复
当我单击答复按钮时,我必须在标签中显示用户名
username feeback reply
when i click on reply button i have to display username in the label
推荐答案
<asp:datalist id="ItemsList" runat="server" onitemcommand="Item_Command" xmlns:asp="#unknown">
<itemtemplate>
<asp:linkbutton id="SelectButton" text="Reply">
CommandName="Reply" runat="Reply" CommandArgument=''<%# Eval("Username") %>'' />
</asp:linkbutton></itemtemplate>
</asp:datalist>
这篇关于当我点击回复链接按钮时,我正在使用数据列表控件,我必须在事件中处理一些代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!