This could happen if you are calling .DataBind everytime the Page is loaded
To avoid this call Databind only for the first request and not for subsequent postbacks.
VB.NET
if not Page.IsPostBack then
’Your databinding code
end if
C#
if (!Page.IsPostBack)
{
’Your databinding code
}
Share with