> Hi,
>
> Is there any possible way to get parameter values from the disabled
> <select> of html.
>
> Thanks in Advance!
As per the HTML specification, disabled form fields are not part of
the submitted data. See HTML 4.01 section 17.13.2: Successful
controls. If you want to prevent the user from changing a control
directly while still allowing it to be submitted, replace it with read-
only text (not a form control at all) and a hidden input with the
value to be submitted.