In your provided sample, after reaching at last row, this row must be stopped untill new row is added.
Bind ASP.Net GridView Row one by one periodically at regular intervals using C#
how to get solution plz.
Change the TimerTick event code with below code.
protected void TimerTick(object sender, EventArgs e) { if (this.GetData().Rows.Count != i) { this.BindData(); i++; } }
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.