And, I have "most" of the anwser... First, I created a User Control. Then, I created: public void Save_Content(). Next, I went back to the parent page where the control is placed. I created a Save button there. The click event does the following: private void btnSave_Click(object sender, System.EventArgs e) { m_oLIFTable.Save_Content(); } Also, I created a reference to the User Control where all my other controls are defined: protected LoanTrak.WebForms.Controls.LIFTable m_oLIFTable; The reason that I say "most" of the answer is because the page doesn't quite write the table of these dynamic date objects correctly. The first time through, as you chose a customer off of the parent page dropdown, the grid is filled out correctly. However, subsequent choices create the correct number of rows in this dynamic table, but the information from the previous choice is not completely cleared out. I will work on that...Unless, someone has an idea? Thanks. Sled Dog :~