Hello,
I am working with your LoadingUserControls example.
I understand your example but in what I want to do, it is slight different because in the ASCX I want to load, I have a part of code which I want to be loaded only if Page.IsPostBack is false....
To be more precise, on the ASCX Page_Load, I have :
I really need to have the DropDownList bind here.
Do you have any solution for such a problem?
Thank for your time.
I am working with your LoadingUserControls example.
I understand your example but in what I want to do, it is slight different because in the ASCX I want to load, I have a part of code which I want to be loaded only if Page.IsPostBack is false....
To be more precise, on the ASCX Page_Load, I have :
if (IsPostBack) |
return; |
BindingDropDownList(); |
I really need to have the DropDownList bind here.
Do you have any solution for such a problem?
Thank for your time.