Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想更改表单视图中数据绑定文本框的文本并在文本框中显示更改内联(不仅仅是在 FIND CONTROL 和 TextBox 类后面执行此操作)。我所知道的是直到这个:
TextBox TxtNew = (TextBox)FormViewbla.FindControl("Txt_blabla"); TxtNew.Text = "some bla";
现在我如何将 TxtNew 文本放入 FormView 中的 Txt_blabla 文本框中?