无法将“System.Web.UI.WebControls.DataControlLinkBut​​ton”类型的对象强制转换为“System.Web.UI.WebControls.TextBox”类型

时间:2016-01-31 06:57:01

标签: c# asp.net

您正在使用以下代码获取值。这工作得很好,但现在却产生了错误。

$ find ~/Desktop -name “*.jpg” -o -name “*.gif” -o -name “*.png” -print0 | xargs -0 mv –target-directory ~/Pictures
mv: cannot stat `–target-directory': No such file or directory

1 个答案:

答案 0 :(得分:0)

在我看来,其他一些控制现在在索引0处。 BTW这通常是一个糟糕的解决方案。要么使用名称,要么动态添加控件,标记一个名称并使用LINQ搜索它:

TextBox message= (TextBox)row.Cells[0].Controls.Where(c=>c.Tag.ToString()=="your tag").First();