Quote:
the form view barks at me. (Object reference not set to an instance of an object).
Your FormView ID was set to "KeyDates_FV" and in your code, you are using
FormView1.FindControl("LAA_PlanDate_CAL");
FormView1
doesn't exist in the first place. So you want to do something like this instead:
Calendar LAA_PlanDate_CAL = (Calendar)KeyDates_FV.FindControl("LAA_PlanDate_CAL");