ListBox in composite control. SelectedItem not available.

  • Thread starter Thread starter shantanu_kush
  • Start date Start date
S

shantanu_kush

Hi all,

I have a ListBox in a composite control. EnableViewState for the
ListBox is true.

The ListBox is populated with some values.

The user makes a selection in the ListBox and then Clicks a Button.

In the Button Click event, I want to get the SelectedItem of the
ListBox.

The SelectedItem valued is coming to be null.. Also, the ListBox is not
preserving it's ViewState.

Any advice.

Thanks.

Shantanu..
 
Hi all,

The problem was that EnsureChildControls() should be called from the
OnInit() override

protected override void OnInit(EventArgs e)
{
EnsureChildControls();
base.OnInit (e);
this.AttachEvents();
}

It works very well now.. Thanks for ur efforts.

Shantanu..
 

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

Back
Top