I have a simple form. Let's say one textbox and a button.
If these items are placed on the aspx page, they are automatically added to the *.designer.cs file and they can be referenced in my C# code behind. Just like it's supposed to.
The problem occurrs when I take these items and place them within an for a FormView control. At that point all traces of them are removed from the designer.cs file and any code written using these controls now give "does not exist in current context" error. The FormView control itself is left in the designer code behind. If I re-add them they won't stick. If I delete the designer.cs and let it remake, it just remakes without the controls.
Any clues?