Home > OS >  Is there a way to open a new panel everytime a button is clicked?
Is there a way to open a new panel everytime a button is clicked?

Time:11-30

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

CodePudding user response:

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.)

CodePudding user response:

Write your code because your explanation is not clear

  • Related