Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Participant
1520 Points
775 Posts
Apr 09, 2012 06:23 PM|LINK
It seems you are rebinding your DataList in Page Load event.
Its ok to keep it there, but try putting that code in -
if (Page.IsPostBack == false)
{
--- move your rebind code here
}
nirman.doshi
Participant
1520 Points
775 Posts
Re: how to get the data bound to an instance of a user control
Apr 09, 2012 06:23 PM|LINK
It seems you are rebinding your DataList in Page Load event.
Its ok to keep it there, but try putting that code in -
if (Page.IsPostBack == false)
{
--- move your rebind code here
}
Software Developer
Vadodara, India