G
Geoff
Is there any way to change the enabled property of a dropdownlist without a
postback, depending on the selection in another dropdownlist?
Select Case ddlReport.SelectedValue
Case "Profit"
ddlFormat.Enabled = True
Case "Trial Balance"
ddlFormat.Enabled = False
End Select
postback, depending on the selection in another dropdownlist?
Select Case ddlReport.SelectedValue
Case "Profit"
ddlFormat.Enabled = True
Case "Trial Balance"
ddlFormat.Enabled = False
End Select