I'm designing in a web form.. the idea is like to design a forum -Like Here - where there is a main post body (Like this question im writing) and there be some replies to this question (like The ones will be answered to this question).
I have problem in putting reply comments under each other
I have made a reply button, when it is pressed,this code executes:
TextBox tb = new TextBox();
Panel3.Controls.Add(tb);
which panel3 is a panel under the main body, and textBox is a field for reply comments, and i want there to be as many as text boxes in the panel3 as the button is inserted.
when i click for the 2nd or 3rd or.... times, the current text box goes over the previous one and it wont go under it
how can i position each under previous text box?