FormView.FindControl() returns null until DataBind()
Why method FindControl() returns null on FormView until call DataBind().
Why method FindControl() returns null on FormView until call DataBind().
I need find this <a> tag resided in a FormView control, I need to remove this a tag depending on the condition but I can’t find it using FormView.FindControl method
I have a checkbox and a panel inside of a FormView control, and I need to access them from the code behind in order to use the checkbox to determine whether or not the panel is visible. This is the code that I originally used, but since I put the controls inside of the FormView, it no longer works.
I have 2 DropDownList controls on my form, the second of which uses the SelectedValue of the first as one of its binding parameters.
I have a UserControl, containing a FormView, containing a DropDownList.
The FormView is bound to a data control.
Hi all I created a project that has a Formview bound to a Gridview. All the other commands seem to work fine except when I try to update the form view I get the error in the title. Here is my code.