Problem with Label control please help
As I am new to .net,I came with a problem that whether we can print series of numbers in Label.text.
for eg:
for(int i=0;i<5;i++)
{
label1.text=i.Tostring();
}
I tried with the above program but only one number is printing ,to get all the numbers printed in label what to do ? please help.