Hello To All
This is my drop down list:
Height="17px"
onselectedindexchanged="DDLCategory_SelectedIndexChanged">
But Event is not firing
protected void DDLCategory_SelectedIndexChanged(object sender, EventArgs e)
{
// Some Code...
} Please Find Out the Error
Thanks in advance...
Bhasker DasPosted Aug 4, 2014, 9:03 AM
I can see there is no item in your dropdown. If this is the case, then you would not be able to make selection and no index will be changed, hence selected index changed event is not firing (even there is 'AutoPostBack' property having 'true' value).
If this dropdown has values, they could be -
1) Static
2) Dynamic
Please send us entire code set to analyse more if items are available.
Thanks,
Bhasker