Posted on: 12/15/2013 4:30:02 PM | Views : 868

Hello there,

I hope some one can help me with a repeater function.
What i want to have is like click on a button and then create a div with like some textarea's enz..
But i don't realy know how to start with this..
This is my HTML
<body> <asp:Button ID="Button1" runat="server" Text="Add Messagebox" OnClick="add_textbox" /><br /> <asp:Repeater ID="test" runat="server"> <ItemTemplate> <div class="aanmaken"> <form> <textarea style='display: inline-block; top: 0px; left: 0px;'/> </form> </div> </ItemTemplate> </asp:Repeater> </body>
And here is my c#.. well i realy don't have anythink righ ...

Go to the complete details ...