[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Beatrix

11/19/2007 4:24:00 PM

Hi,

My idea is that I want to draw more textboxes runtime, with a "for".

Like
for (i=0; i< sg;i++)
{
TextBox something+i = new TextBox; //meaning something1
}
when i is always added to the previous, and gives multiple textboxes.

I need this because I have to draw multiple textboxes, and check the answers.
Now I start to understand, if I dont assign the name for all textboxes I
will not be able to return their values. Then is there a better option?

Thank you,