我的页面中有一个 ComboBox:
<dx:ASPxComboBox ID="comboSiteID" runat="server" style="margin-bottom: 0px" ValueField="name" Width="120px"></dx:ASPxComboBox>
当用户从此组合框中选择一个项目时,我想查询 MSSQL 并在标签上显示返回值:
<dx:ASPxLabel ID="ASPxLabel1" runat="server" Text="Value is here"></dx:ASPxLabel>
似乎客户端事件是放置我的代码的合适事件
<clientsideevents TextChanged="function(s, e) {
// What to do?
}" />
完成这项任务的最佳方法是什么?