GridView绑定多个参数值

在GridView绑定多个参数值,可以用如下方法:

<asp:LinkButton ID="lbtnCheck" Text='<%#GetLinkButtonText(Eval("Sort2"))%>' CommandName="Check" CommandArgument='<%#Eval("NewsID")+"|"+Eval("Sort2")%>'   runat="server"></asp:LinkButton>

参数之间用“|”来分割

你可能感兴趣的:(GridView)