UI 功能:我有GridView
几列。最重要的列是PcCode,它显示string
每一行的值。
预期:当我单击该 PcCode 列的一行中的一个单元格时,GridView
应显示另一个单元格。但是,当我尝试将 aasp:LinkButton
用于单元格时,事情就不起作用了。当我单击单元格中的RowCommand
a 时不会触发。我在哪里做错了?哪种方式可以实现预期的功能?在此先感谢您帮助新手。 asp:LinkButton
GridView
在下面的代码中,我试图获取 aRowIndex
并将其传递给CommandArgument
并使用 a CommandName
。
.aspx 代码
<asp:GridView ID="_UIProfitcenterTotalGridView" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None" AllowPaging="True" PageSize="22" ShowFooter="True" AutoGenerateColumns="False"
DataKeyNames="ProfitcenterCode" EnableViewState="False"
OnRowDataBound="_UIProfitcenterTotalGridView_RowDataBound"
OnPageIndexChanging="_UIProfitcenterTotalGridView_PageIndexChanging"
OnRowCommand="_UIProfitcenterTotalGridView_OnRowCommand">
<Columns>
<asp:TemplateField HeaderText="PcCode" InsertVisible="False"
ShowHeader="False" SortExpression="ProfitcenterCode" FooterText="Total" FooterStyle-HorizontalAlign="Left">
<ItemTemplate>
<asp:LinkButton ID="_UIPCCodeLinkButton" runat="server" Text='<%# Eval("ProfitcenterCode") %>'
CommandName="Select"
CommandArgument='<%# ((GridViewRow) Container).RowIndex %>'>
</asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
...
aspx.cs 背后的代码
protected void _UIProfitcenterTotalGridView_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "Select")
{
int index = Convert.ToInt32(e.CommandArgument);
GridViewRow row = _UIProfitcenterTotalGridView.Rows[index];
string ProfitcenterCode = _UIProfitcenterTotalGridView.DataKeys[_UIProfitcenterTotalGridView.SelectedIndex].Values["ProfitcenterCode"].ToString();
}
}
选择行后,我需要将所选行的值作为字符串并与列表项进行比较以显示新的 GridView。
试过了
使用 Link_Button_Click(Object sender, EventArgs e) 和以下但失败。
protected void _UIProfitcenterTotalGridView_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "Select") {string ProfitcenterCode = ((GridViewRow)(((LinkButton)e.CommandSource).NamingContainer)).Cells[2].Text ; } }