Hi I want to get the value of disabled text box in our next jsp the value comes null. any idea about this.
thaks
Hi I want to get the value of disabled text box in our next jsp the value comes null. any idea about this.
thaks
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.