Posted on: 12/5/2013 11:51:12 AM | Views : 789

Hello,
What I need to happen is that the user is presented with a table with control elements - Labels, Textboxes, DropDowns, Checkboxes etc.
This table is generated from a database.
The user can either add data to the table and submit it to the Database or can print off a PDF copy of the table in its current state.
Some fields in the table will be populated programmatically which is where the problem starts.
I have a page [info.aspx] that has a master page [my.master]
info.aspx has an empty table definition inside a div ["pdfContent"]
<div ID="PDFContent" runat="server"> <asp:Table ID="Table1" border="1" runat="server" > </asp:Table> </div> info.aspx.vb has a ["getData"] sub that runs on pageLoad (NOT isPostBack) which accesses a database and creates the rows and cells for the table.

 Go to the complete details ...