Forms or Controls

  • Thread starter Thread starter sunil
  • Start date Start date
S

sunil

We have 15 forms each with 20 fields.
which approach will be provide more flexibility in programming specially
with event handling .
Making them as HTML forms or making as User Control.
Are there any pros and cons.
Thanks!!!!
 
asp.net really only allows one form per page, so your best bet would be user
controls, that way you could handle all the event seperately and the data
would be packaged neatly for you in the code behind file for the user
control.

HTH,

bill
 
Back
Top