User1789013027 posted
Hi,
You can do like this.
This is an algorithm.
Please correct it with the syntax of your language i.e. C#.NET, VB.NET, etc.
dim i as integer = 1
do while(i<10)
lbl as Label = CType(FindControl("Lbl" & i.ToString), Label)
// assign label text or handle label properties here... i.e. lbl.Text = i.ToString
i = i + 1
Loop
Hope this may help you.
Happy Coding... [Idea]