The way I tried is the following:
public void ResetForm(ControlCollection objSiteControls)
{
foreach (Control objCurrControl in objSiteControls)
{
string strCurrControlName = objCurrControl.GetType().Name;
switch (strCurrControlName)
{
case "TextBox":
TextBox objTextBoxControl = (TextBox)objCurrControl;
objTextBoxControl.Text = string.Empty;
break;
case "DropDownList":
DropDownList objDropDownControl = (DropDownList)objCurrControl;
objDropDownControl.SelectedIndex = -1;
break;
case "GridView":
GridView objGridViewControl = (GridView)objCurrControl;
objGridViewControl.SelectedIndex = -1;
break;
case "CheckBox":
CheckBox objCheckBoxControl = (CheckBox)objCurrControl;
objCheckBoxControl.Checked = false;
break;
case "CheckBoxList":
CheckBoxList objCheckBoxListControl = (CheckBoxList)objCurrControl;
objCheckBoxListControl.ClearSelection();
break;
case "RadioButtonList":
RadioButtonList objRadioButtonList = (RadioButtonList)objCurrControl;
objRadioButtonList.ClearSelection();
break;
}
}
}
protected void ButtonRoleCancel_Click(object sender, EventArgs e)
{
_objClsUtils.ResetForm(Page.Controls);
}
That doesn't work for me. The controls are not found.
Then I tried
protected void ButtonRoleCancel_Click(object sender, EventArgs e)
{
ContentPlaceHolder objContPage = (ContentPlaceHolder)Page.Master.FindControl("ContentPlaceHolderWorkbench");
_objClsUtils.ResetForm(objContPage.Controls);
}
But also this way seems to be wrong.