gridview 上TextBox取值
报错:无法将类型为“System.Web.UI.WebControls.TextBox”的对象强制转换为类型“System.Web.UI.LiteralControl”。
具体情况:
已经存在的
e.keys
e.RowIndex
e.Newvalue
e.oldValue
e.cancel
//
string names = ((TextBox)GridView1.Rows[e.RowIndex].Cells[2].Controls[0]).Text;
我将绑定列转换城模板后取值就会报这样的错误。
而事实上我这样
string names = ((LiteralControl)GridView1.Rows[e.RowIndex].Cells[2].Controls[0]).Text; 取值就为""
在线等!!!