how to clear multiple textboxes with minimal coding on an asp.net web page ?
Aditya 0
Select an image from your device to upload
Try with the following code.
Control myForm = Page.FindControl("Form1");
foreach (Control ctl in myForm.Controls) if(ctl.GetType().ToString().Equals("System.Web.UI.WebControls.TextBox")) ((TextBox)ctl).Text = "";