我的Gridview
每行都有一个关闭linkbutton
。当用户在关闭Button
中单击时,它应该将数据写入该特定行。我的数据已写入,但是当我在第三行linkbutton
关闭时单击时,它会写入第一行。我希望它写到第三行。
<asp:GridView ID="gvMain" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None"
Width="688px" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False"
OnRowCommand="gvTransInfo_RowCommand">
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
<Columns>
<asp:TemplateField HeaderText="Transaction Type" SortExpression="TransTypeDesc">
<EditItemTemplate>
<asp:DropDownList ID="DDLTrans" runat="server" DataSourceID="SqlDataSourceTrans"
DataTextField="TransTypeDesc" DataValueField="TransTypeId">
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSourceTrans" runat="server" ConnectionString="<%$ ConnectionStrings:iQueueConnectionString %>"
SelectCommand="SELECT [TransTypeId], [TransTypeDesc] FROM [tblTransType]"></asp:SqlDataSource>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblTrans" runat="server" Text='<%# Bind("TransTypeDesc") %>'></asp:Label>
</ItemTemplate>
<ItemStyle HorizontalAlign="Center" />
</asp:TemplateField>
<asp:BoundField DataField="Received" HeaderText="Received" SortExpression="Received">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Complete" HeaderText="Complete" SortExpression="Complete">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="TransTime" HeaderText="Est. Transaction Time" SortExpression="TransTime">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:TemplateField ShowHeader="False">
<ItemTemplate>
<asp:LinkButton ID="lbClose" runat="server" CausesValidation="False" CommandName="CloseClicked"
OnClick="CloseClick_Click">Close</asp:LinkButton>
<asp:LinkButton ID="lbEdit" runat="server" CausesValidation="False" CommandName="EditRow">Edit</asp:LinkButton>
<asp:LinkButton ID="lbDelete" runat="server" CausesValidation="False" CommandName="DeleteRow">Cancel</asp:LinkButton>
</ItemTemplate>
<EditItemTemplate>
<asp:LinkButton ID="lbUpdate" runat="server" CausesValidation="True" CommandName="UpdateRow"
Text="Update" CommandArgument='<%# Eval("TicketId")%>'></asp:LinkButton>
<asp:LinkButton ID="lbCancel" runat="server" CausesValidation="False" CommandName="CancelUpdate"
CommandArgument='<%# Eval("TicketId")%>' Text="Cancel"></asp:LinkButton>
</EditItemTemplate>
<FooterStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Center" />
</asp:TemplateField>
</Columns>
protected void CloseClick_Click(object sender, EventArgs e)
{
var StartLink = (Control)sender;
GridViewRow row = (GridViewRow)StartLink.NamingContainer;
firstCellText = row.Cells[0].Text;
}
答案 0 :(得分:0)
使用CommandField
select
属性而不是TemplateField
LinkButton
并在YourGridView_SelectedIndexChanged handler
中使用YourGridView.SelectedIndex
来处理您点击的行。
firstCellText = row.Cells[YourGridView.SelectedIndex].Text;
答案 1 :(得分:0)
得到了解决。我刚刚做了一个查询,并根据我的firstcellText值显示它,以解决问题。