how to get selected value of Disabled dropdown in c#

后端 未结 3 2109
南方客
南方客 2021-01-18 13:26

In my form there are two DropDownList controls.

1st is enabled and 2nd is disabled.

After selecting 1st dropdown I am changing selected value of 2nd dropdown

相关标签:
3条回答
  • 2021-01-18 14:15

    Just Add disabled dropdownlist's value in hidden field on change then read value from hidden field rather than dropdownlist.may be this will help you.

    0 讨论(0)
  • 2021-01-18 14:22

    If you are trying to read the value of 2nd dropdown (disabled one) at server, you will never be able to read the updated value, becuase data in disabled controls will not be posted back to server from client.

    You should either enable the dropdown before posting your data to server or use hidden controls to hold data of your disabled dropdown.

    0 讨论(0)
  • 2021-01-18 14:27

    You would need to add another input that is hidden. Whenever you change the value of your 1st DropDownList, you'd change the value of your 2nd DropDownList AND the value of the hidden input.

    Server-side, you're not looking at the value of the 2nd DropDownList, but at the value of your hidden input. Make sure the hidden value is always sync with the 2nd DDL when you post your form.

    0 讨论(0)
提交回复
热议问题