web user control events

G

Greg

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 was 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???). The aspx page might be loading 0 to unlimited number of these controls, one after another ... so what I did was add the eventhandler immediately after I added each control instead of in the OnInit event. Now, the page hits the event, but it always thinks that the event is being triggered by the last-loaded control. Can anyone help or at least point me in the right direction? Do I need to build a control collection of some sort and just add that control collection to the aspx page? How would I go about that?
 
G

Greg

I am able to handle the control, but only the last control I dynamically put on the page. I have a web user control, but I might have 1 or more of them on a single page. Somehow I guess I have to have the controls in a collection(?) and in the onclick event method be able to determine which user control had the button which was clicked. As it stands now, it always assumes the event was fired from the control that was placed last on the page.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,576
Members
45,054
Latest member
LucyCarper

Latest Threads

Top