asp c# .net GridView使用 Visible="false"隐藏以后如何获取到值
aspc#.netGridView使用Visible="false"隐藏以后如何获取到值GridView3.Rows[e.RowIndex].Cells[1].Text;...
asp c# .net GridView使用 Visible="false"隐藏以后如何获取到值
GridView3.Rows[e.RowIndex].Cells[1].Text;
| ↑ |
这里获取不到用Visible="false"隐藏以后的列的值 展开
GridView3.Rows[e.RowIndex].Cells[1].Text;
| ↑ |
这里获取不到用Visible="false"隐藏以后的列的值 展开
4个回答
展开全部
可以使用模板列,前台代码:
<asp:TemplateField HeaderText="id" Visible="False">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Eval("loginID") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
后台可通过
GridView3.Rows[e.RowIndex].FindControl("Label1") as Label).Text
就可以获得隐藏列的值
<asp:TemplateField HeaderText="id" Visible="False">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Eval("loginID") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
后台可通过
GridView3.Rows[e.RowIndex].FindControl("Label1") as Label).Text
就可以获得隐藏列的值
展开全部
可以在绑定的时候将你隐藏的值绑定在DataKeyNames这个值里,
前提是你绑定的这一列值是不重复的,否则后台就取不到值,
比如你要隐藏的是ID这一列,绑定的时候加上以下这个:
GridView1.DataKeyNames = new string[] { "id" }; 这个ID是不重复的.
界面上就不会显示这一列值,然后再后台取值的时候这样取:
id = int.Parse(GridView1.DataKeys[e.RowIndex].Value.ToString());
前提是你绑定的这一列值是不重复的,否则后台就取不到值,
比如你要隐藏的是ID这一列,绑定的时候加上以下这个:
GridView1.DataKeyNames = new string[] { "id" }; 这个ID是不重复的.
界面上就不会显示这一列值,然后再后台取值的时候这样取:
id = int.Parse(GridView1.DataKeys[e.RowIndex].Value.ToString());
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
for (int i = 0; i < gridView.Rows.Count; i++)
{
Lable lab = (Page.Master.FindControl("labid").FindControl("gridView") as GridView).Rows[i].FindControl("Lable ") as Lable ;
}
{
Lable lab = (Page.Master.FindControl("labid").FindControl("gridView") as GridView).Rows[i].FindControl("Lable ") as Lable ;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
RowIndex].Cells[1].Text;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询