Re: Trouble with FormView
you should put a breakpoint somewhere in the pre-render code and do a Watch on the frmBudgetSummary. It may have the control but you may need to drill down to it. using watch will let you know how many control levels you may have to drill down.
For example the FormView may have one main control, and in that several different controls so you may need something like
Code:
frmBudgetSummary.Controls[0].FindControl("lblFY");
using watch you can easily see how nested the label is.
hth,
mcm