Hi , I am able to put the following code in an aspx page then once the selected index changed, I can run a method to do process some code.
<asp:dropdownlist id="ddlPartnership" AutoPostBack="true" Runat="server" OnSelectedIndexChanged="FillddlProject" />
The Question, is now I have created a user control where I put the above code inside ueser control, then I used the Usercontrol in an aspx page :
<%@ Register TagPrefix="uc1" TagName="PIPT_Combo_Investor_cr" Src="PIPT_Combo_Investor_cr.ascx" %>
SO if I want to run some code once the user changed the selected index, how can I do that.
thanks for your help
Ehx
<asp:dropdownlist id="ddlPartnership" AutoPostBack="true" Runat="server" OnSelectedIndexChanged="FillddlProject" />
The Question, is now I have created a user control where I put the above code inside ueser control, then I used the Usercontrol in an aspx page :
<%@ Register TagPrefix="uc1" TagName="PIPT_Combo_Investor_cr" Src="PIPT_Combo_Investor_cr.ascx" %>
SO if I want to run some code once the user changed the selected index, how can I do that.
thanks for your help
Ehx