点击网格视图中的编辑按钮无法将模板字段中的标签值绑定到 行数据绑定事件中同一页面上的文本框
TxtVendor.Text = TryCast(e.Row.FindControl("lblGridvendname"), Label).Text
答案 0 :(得分:0)
试试这个对我有用。
if (e.Row.RowType == DataControlRowType.DataRow)
{
Label lblVendor = (Label)e.Row.FindControl("lblGridvendname");
TextBox txtVendor = new TextBox();
txtVendor.Text = lblVendor.Text.ToString();
}