Hi
I am fairly new to ASP.NET development and have question about DataRepeater control
I have this datarepeater control inside a user control (ascx). Repeater control holds two textboxes and two dropdownlists.
These dropdown lists are filled dynamically and the selected index of first dropdown decides which values to be fetched from DB to fill 2nd combo.
This logic has been written in javascript that will get executed on selected index change for 1st combo which will fill the 2nd combo values.
Also written logic for filling combo in ItemDatabound event of datarepeater.
I cant have AutoPostBack property of combo box set to true for handling combo events, as I dont want the complete page to be refreshed each time as I am using wizard control.
I tried using hidden control to store the changed value of combo and storing combos selected index value on selectedindexchange java script.
But I am not able to access the selected index change or the Hidden text filed value for the combo inside DataBound.
Please advice how dynamic filling of combo can be handled on change event of another combo without setting AutoPostBack Property to true.
Thanks in advance.
Start Free Trial