tags:

views:

21

answers:

1

Hi I want to get the value of disabled text box in our next jsp the value comes null. any idea about this.

thaks

+2  A: 

Input fields marked with disabled="disabled" never send their value to the server when the form is posted. You could use the readonly="readonly" attribute in order to still make the field not editable by the user but send the initial value to the server when the form is submitted.

Darin Dimitrov