Posted on: 4/21/2014 2:08:56 AM | Views : 387

Hi,
I have default.aspx page contains user control usercontrol1.ascx and has usercontrol2.ascx inside usercontrol1.ascx.
I have combo box in the usercontrol2.ascx and calling selectindexchanging custom event in the usercontrol1.ascx , but it is not working.
Partial Class UserControl2 Inherits System.Web.UI.UserControl ' Delegate declaration Public Delegate Sub OncboAddendumNo_SelectedIndexChanged() ' Event declaration Public Event cboAddendumNo_SICHandler As OncboAddendumNo_SelectedIndexChanged Protected Sub cboAddendumNo_SelectedIndexChanged(sender As Object, e As RadComboBoxSelectedIndexChangedEventArgs) Handles cboAddendumNo.SelectedIndexChanged RaiseEvent cboAddendumNo_SICHandler() End Sub End Class Partial Class UserConrol1 Inherits System.Web.UI.UserControl Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me ...

Go to the complete details ...