当前位置:Gxlcms > asp.net > asp.net button 绑定多个参数

asp.net button 绑定多个参数

时间:2021-07-01 10:21:17 帮助过:7人阅读

代码如下:
CommandName="id_" CommandArgument='<%#Eval("id_comments_")+","+Eval("iscertification_comments_") %>' OnCommand="comment_click"


代码如下:
protected void comment_click(object sender,CommandEventArgs e)
{
string temp = e.CommandArgument.ToString();
MessageBox.Show(temp);
}

人气教程排行