For Each In Web Form
I want to these textboxes with For Each clear and so my code
Sub Clear()
For Each Ctrl As Control In Page.Controls
If TypeOf (Ctrl) Is TextBox Then
If Ctrl.ID.StartsWith("txt") Then
CType(Ctrl, TextBox).Text = ""
End If
End If
Next
End Sub
Thanks For Help

