Wednesday, September 19, 2012

วิธี Clear All TextBox in ASP.Net

เคลียร์ TextBox ใน WinForm ก็ไม่ยากแต่มาทำใน WebForm นี่งง... อยู่ตั้งนาน จนมาเจอโค้ดนี้ใช้งานได้ Work จริง ๆ
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
  EmptyTextBoxValues(Me)
End Sub
Private Sub EmptyTextBoxValues(ByVal parent As Control)
  For Each c As Control In parent.Controls
    If (c.Controls.Count > 0) Then
        EmptyTextBoxValues(c)
    Else
        If TypeOf c Is TextBox Then
           CType(c, TextBox).Text = ""
        End If
    End If
  Next
End Sub

1 comment: