本文介绍了界域值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在网格视图中有一个与DataField ="Status"绑定的字段..
现在在我的代码页中,我想访问该值..
我正在尝试
I have one bound field with DataField="Status" in grid view..
now in my code page i want to access that value..
i am trying as
BoundField Status= (BoundField)e.Row.FindControl("Status");
其给定错误
its giving error
推荐答案
CheckBox cBox = gridView.Rows[0].Cells[0].Controls[0] as CheckBox;
如果有帮助,请 投票 和 接受答案 .
Please vote and Accept Answer if it Helped.
e.Row.RowType = DataControlRowType.DataRow
有关详细信息,请检查
http://forums.asp.net/p/1088037/1624163.aspx [ ^ ]
谢谢
for details pleaese check
http://forums.asp.net/p/1088037/1624163.aspx[^]
thanks
这篇关于界域值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!