Hello,
Without more specifics about your site we can suggest something similar to the following:
<asp:DropDownList ID="MonthDD" runat="server" Enabled="true" onchange="someFunction()">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
</asp:DropDownList>
<script type="text/javascript">
function someFunction() {
alert("Changed");
}
</script>
updateCustomTableItem.SetValue("ItemText", itemText.ToLowerCSafe());
You could use the OnChange event to call a function then update the item in the function. Would this approach work for you? Please let me know if you have any questions or additional information.
Thanks,
Sandro