Submit doubt

  • Thread starter Thread starter Carlos Cruz
  • Start date Start date
C

Carlos Cruz

Hi,

Suposing that I've an aspx page with a <table> with 2 colums, the column on
the left has a menu loaded from a database and the column on the right an
ascx user control with a submit button.

My question is... Do I need to reload the left cell menu each time the user
clicks on the submit button?

Thanks
CC
 
Every time the Page is Posted Back your code has to rebuild the entire page.
HTTP is stateless.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top