0
votes

I have filled my drop down list on client side using jQuery script.

However, on post back the selected values of drop down list does NOT get maintained.

How can i set the selected value to drop down list on server side Or is it possible on client side...

I am creating my drop down list dynamically and my drop down list is a server side control.

1
What server side language are you using? (this isn't a JS question)Asad Saeeduddin
I am using vb.net languageXamDev

1 Answers

0
votes

On the client side:

set the value with $("#the_select").val(the_value);

get the value with $("#the_select").val();