I use this blog to record programming notes from both work and personal projects. I don't put everything I do on here but when I write a handy script or figure something out that I don't want to forget for next time, I add it to this blog. Feel free to use this blog in your own projects.
Test Menu
Commentary
Deals
Coupons
Nov 4, 2011
Clear All Textboxes on a Web Form
For Each ctrl AsControl In Form.Controls If ctrl.GetType.Name = "TextBox"Then Dim tb AsTextBox = ctrl
tb.Text = String.Empty End If Next
No comments:
Post a Comment