private void GetAllCtlClr(ControlCollection ctls)
{
foreach (Control c in ctls)
{
if (c is System.Web.UI.WebControls.TextBox)
{
TextBox tt = c as TextBox;
tt.Text = "";
}
if (c.HasControls())
{
GetAllCtlClr(c.Controls);
}
}
}
call this method in Page_Load event
(OR)
Write the following in the submit button click event:
Response.Write("");
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment