This is a migrated thread and some comments may be shown as answers.

how to fire selectedindexchange in pageload

2 Answers 528 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
mohamed
Top achievements
Rank 1
mohamed asked on 07 May 2013, 03:34 AM
how to fire selected index change in page load
ClaimNo_SelectedIndexChanged

Thanks Advance,
Mohamed

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 07 May 2013, 04:42 AM
Hi Mohamed,

Please have a look at the following C# code.

C#:
protected void Page_Load(object sender, EventArgs e)
{
    RadComboBox1_OnSelectedIndexChanged(RadComboBox1, e);
}
 
protected void RadComboBox1_OnSelectedIndexChanged(object sender, EventArgs e)
{
     //SelectedIndexChanged event
}

Thanks,
Princy.
0
mohamed
Top achievements
Rank 1
answered on 07 May 2013, 04:48 AM
Thanks For ur reply Princy
i got the solution

ClaimNo_SelectedIndexChanged(null, null);
Tags
ComboBox
Asked by
mohamed
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
mohamed
Top achievements
Rank 1
Share this question
or