The formview has more than 1 Panels. My textbox is in the first panel. If I use this
TextBox myTxtBox = (TextBox)myformView.Row.FindControl("pnlID").FindControl("mytextbox"); <- does not work
Panel mypanel = (Panel)myformView.Row.FindControl("pnlID"); <- this works
TextBox myTxtBox = (TextBox) FindControlRecursive(mypanel,'mytextbox'); <-- this does not work
Can someone help? As as side question, I used a function FindControlIterative but I do not know which references to include for LinkedList