I have a panel that has 3 textareas for a user to add certain information. It then goes through the process of being saved to the database. On every click of a button, I want the same empty panel to appear which will allow the user to enter multiple entries
2
Answers
After button click event you could call a Redirect to the same page which will clear out the textboxes or explicitly clear them out (Textbox1.Text = "" etc.)
I put together this little code for you, hope it helps you
So anytime the button #btn is clicked, first the form is submitted and then the textarea is cleared.