我在手风琴控制器内有一个formview。如何从formview1中的文本框中检索文本值?谢谢!
--? TextBox start_date = (TextBox)FormView1.Row.FindControl("start_date");
答案 0 :(得分:0)
你应该在Databound事件或ItemCreated上使用FindCOntrol方法因为我认为formview必须处于可编辑模式以获得你可以用这样的东西知道它的控件:
If FormView1.CurrentMode = FormViewMode.Edit Then
'findControl()
End IF