我正在使用GridView - AutoGenerateSelectButton = "True"
来选择行以获取第1列单元格值。
我试过了:
GridViewRow row = dgCustomer.SelectedRow;
TextBox1.Text = "Cell Value" + row.Cells[1].Text + "";
它写了" Cell Value"但没有别的。
我终于能够获得行数(索引)而不是单元格值。
GridViewRow row = dgCustomer.SelectedRow;
TextBox1.Text = row.RowIndex.ToString();
我试过了:
TextBox1.Text = dgCustomer.Rows[row.RowIndex].Cells[1].Text;
并仍然返回索引行。
还有其他建议吗? 谢谢!
答案 0 :(得分:15)
尝试将代码更改为
// Get the currently selected row using the SelectedRow property.
GridViewRow row = dgCustomer.SelectedRow;
// And you respective cell's value
TextBox1.Text = row.Cells[1].Text
更新(根据我的评论) 如果您要获取的所有内容都是所选行的主键值,则另一种方法是设置
datakeynames="yourprimarykey"
用于gridview定义,可以从后面的代码中访问,如下所示。
TextBox1.Text = CustomersGridView.SelectedValue.ToString();
答案 1 :(得分:6)
foreach (DataGridViewRow row in dataGridView1.Rows)
{
if (row.Selected)
{
foreach (DataGridViewCell cell in row.Cells)
{
int index = cell.ColumnIndex;
if (index == 0)
{
value = cell.Value.ToString();
//do what you want with the value
}
}
}
}
答案 2 :(得分:2)
我建议您在模板字段内使用HiddenField,使用FindControl来查找此字段。
即:
ASPX
<asp:TemplateField>
<ItemTemplate>
<asp:HiddenField ID="hfFname" runat="server" Value='<%# Eval("FileName") %>' />
</ItemTemplate>
</asp:TemplateField>
背后的代码
protected void gvAttachments_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
GridView gv1 = (GridView)sender;
GridViewRow gvr1 = (GridViewRow)gv1.Rows[e.RowIndex];
//get hidden field value and not directly from the GridviewRow, as that will be null or empty!
HiddenField hf1 = (HiddenField)gvr1.FindControl("hfFname");
if (hf1 != null)
{
..
}
}
答案 3 :(得分:1)
你试过Cell[0]
吗?记住索引从0开始,而不是1。
答案 4 :(得分:0)
扩展Dennis R上面的回答...... 这将根据标题文本获取值(因此您不需要知道哪个列...特别是如果它的动态变化)。
在SelectedIndexChange上设置会话变量的示例。
protected void gvCustomer_SelectedIndexChanged(object sender, EventArgs e)
{
int iCustomerID = Convert.ToInt32(Library.gvGetVal(gvCustomer, "CustomerID"));
Session[SSS.CustomerID] = iCustomerID;
}
public class Library
{
public static string gvGetVal(GridView gvGrid, string sHeaderText)
{
string sRetVal = string.Empty;
if (gvGrid.Rows.Count > 0)
{
if (gvGrid.SelectedRow != null)
{
GridViewRow row = gvGrid.SelectedRow;
int iCol = gvGetColumn(gvGrid, sHeaderText);
if (iCol > -1)
sRetVal = row.Cells[iCol].Text;
}
}
return sRetVal;
}
private static int gvGetColumn(GridView gvGrid, string sHeaderText)
{
int iRetVal = -1;
for (int i = 0; i < gvGrid.Columns.Count; i++)
{
if (gvGrid.Columns[i].HeaderText.ToLower().Trim() == sHeaderText.ToLower().Trim())
{
iRetVal = i;
}
}
return iRetVal;
}
}
答案 5 :(得分:0)
我和你的问题一样。我发现当我在GridView中使用BoundField
标签来显示我的数据时。 row.Cells[1].Text
正在使用:
GridViewRow row = dgCustomer.SelectedRow;
TextBox1.Text = "Cell Value" + row.Cells[1].Text + "";
但是,当我使用TemplateField
标记来显示这样的数据时:
<asp:TemplateField HeaderText="料號">
<ItemTemplate>
<asp:Label ID="Part_No" runat="server" Text='<%# Eval("Part_No")%>' ></asp:Label>
</ItemTemplate>
<HeaderStyle CssClass="bhead" />
<ItemStyle CssClass="bbody" />
</asp:TemplateField>
row.Cells[1].Text
只返回null。我在这个问题上遇到了很长时间。我最近想出来,我想与遇到同样问题的人分享我的解决方案。请随时编辑此帖子和/或更正我。
我的解决方案:
Label lbCod = GridView1.Rows["AnyValidIndex"].Cells["AnyValidIndex"].Controls["AnyValidIndex"] as Label;
我使用Controls
属性来查找用于显示数据的Label
控件,您可以找到自己的属性。当您找到它并转换为正确的类型对象时,您可以提取文本等。例如:
string showText = lbCod.Text;
参考: reference
答案 6 :(得分:0)
我正在命名列中寻找整数值,因此我执行了以下操作:
int index = dgv_myDataGridView.CurrentCell.RowIndex;
int id = Convert.ToInt32(dgv_myDataGridView["ID", index].Value)
这样做的好处是,该列可以位于网格视图中的任何位置,您仍然会获得该值。
欢呼
答案 7 :(得分:-2)
string id;
foreach (GridViewRow rows in grd.Rows)
{
TextBox lblStrucID = (TextBox)rows.FindControl("grdtext");
id=lblStrucID.Text
}