復制代碼 代碼如下:
private void ClearAllText(System.Web.UI.Control contrl)
{
int ctl_count=contrl.Controls.Count;
for (int i=0;i<ctl_count;i )
{
foreach(Control ctl in contrl.Controls[i].Controls)
{
if (ctl.HasControls())
{
ClearAllText(ctl.Parent);
}
else
{
if (ctl is TextBox)
(ctl as TextBox).Text="";
}
}
}
}
在頁面中添加一個按鈕,調用此函數,參數為this.Page,如:
復制代碼 代碼如下:
ClearAllText(this.Page);
以上代碼僅供學習,希望對大家有幫助。