in my form i am using Html textbox (Hthlinputtext) i want to clear all values in the inputtext when i press reset button what i used for clearing is
foreach(Control control in this.Controls)
{
if(control.GetType() == typeof(HtmlInputText))
{
control.value= "";
}
}
it is not working can somebody help me with this

New Topic/Question
Reply



MultiQuote




|