client side scripting changes to be reflected back to server

  • Thread starter Thread starter Sumit
  • Start date Start date
S

Sumit

Hi,
I am using a HTML Combo box with runat=server. I am adding
few values in the combo box with javascript. The problem I
am faciing is that I am not getting these new values in
the codebehind pages after submiting the page. It gives me
the old values only. I am validating Page.IsPostBack also.

Pls. help
Thanks,
Sumit
 
On submit the runtime populates the combo from the viewstate, hence try
storing it in a hidden variable also, so in page load u can examine the
contents and add/substract.
 
Back
Top