How would you do this in ASP.NET

  • Thread starter Thread starter Lloyd Sheen
  • Start date Start date
L

Lloyd Sheen

I have an app. It is database driven in that a form will be generated with
sections that are static and sections which are defined as:

Label - name is from database
Textbox - ID is from database

For each required Lable/Textbox the controls are added to a panel.

There is a save button but once the server code is activated the controls
which are dynamically generated are no longer on the form. Is there a time
when the server can get the information??

Lloyd Sheen
 
Dynamically generate them again after postback, but let ASP.NET fill in the
values.
 
In the page_load, thanks so much that is not really intuitive but now that I
have seen it I have it drilled in.

Lloyd Sheen
 
Back
Top