Hi
Simply i want Hide all Textboxes in a Panel ,,, in asp.net
i can do it by C# :
foreach (Control ctrl in Panel1.Controls )
{
if (ctrl is TextBox)
{
((TextBox)(ctrl )).Visible = false;
}
}
Can anyone tell me how to do in JavaScript?
Simply i want Hide all Textboxes in a Panel ,,, in asp.net
i can do it by C# :
foreach (Control ctrl in Panel1.Controls )
{
if (ctrl is TextBox)
{
((TextBox)(ctrl )).Visible = false;
}
}
Can anyone tell me how to do in JavaScript?
Comment