C# dropdownlist change event

后端 未结 2 436
野的像风
野的像风 2020-12-05 18:32

There\'s the a

相关标签:
2条回答
  • 2020-12-05 19:15

    Set AutoPostBack property of your DropDownList control to true.

    <asp:DropDownList AutoPostBack="true" runat="server" ID="myListDropDown" 
                    CssClass="text" OnSelectedIndexChanged="myListDropDown_Change" />
    
    0 讨论(0)
  • 2020-12-05 19:20

    Autopostback property of the DropDownList needs to be set to 'true'.

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