G
Guest
I have an ascx web user control that has a button and listbox. I want to be able to expose the click event of the button and return the selected value in the listbox to the aspx page that uses the control. Or, I could capture the click event by the aspx page and expose the selected item property of the listbox. I am having problems just capturing the event on the aspx page and I think it's because the control is being loaded dynamically (I think the control is being lost on postback and the control is reloaded only after the click event tried to fire???). Also, I'm not sure if it makes a difference, but the aspx page might be loading 0 to unlimited number of these controls, one after another. Can anyone help or at least point me in the right direction? I'm pretty new at building web user controls, so it's entirely possible that I'm not even exposing the click event to the aspx page correctly in teh first place. I can put some of my code up if it'll help.