Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / Visual Basic
Tip/Trick

Clearing Controls on Submit

Rate me:
Please Sign up or sign in to vote.
4.60/5 (3 votes)
25 Dec 2014CPOL 12.4K   4   6
Clearing the controls on Submit

Introduction

When you have a Inventory/Online Adjustment claims website like I do which takes lot of data from users, you would need some function which clears out all the fields at one go.

Background

I am working on a web application which is more similar to make a claim form electronically. Instead of sending adjustment claim forms with lot of paper work, I am designing a web application which gathers all the fields that are necessary to complete a claim form. At one point of time, I was fed up with clearing the controls after user submits the form on website. Then comes the idea which made me dig more into this and finally brought me to write this tip. I have seen people clearing each control by assigning empty string. So I did some research and finally got this working.

VB.NET
//
Public Shared Function FlattenHierachy(ByVal root As Control) As Control()
        Dim list As New List(Of Control)()
        list.Add(root)
        If root.HasControls() Then
            For Each control As Control In root.Controls
                list.AddRange(FlattenHierachy(control))
            Next
        End If
        Return list.ToArray()
    End Function

    Private Sub ClearTextBoxes()
        Dim allControls As Control() = FlattenHierachy(Page)
        For Each control As Control In allControls
            Dim textBox As TextBox = TryCast(control, TextBox)
            If textBox IsNot Nothing Then
                textBox.Text = ""
            End If
        Next
    End Sub

    Protected Sub ClearDropDowns()
        ddlState.SelectedIndex = -1
        ddlADState.SelectedIndex = -1
        ddlDState.SelectedIndex = -1

    End Sub

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.
This is a Social Group (No members)


Comments and Discussions

 
QuestionGeneralized Code Pin
sudevsu31-Dec-14 6:32
sudevsu31-Dec-14 6:32 
QuestionCode is generalized Pin
sudevsu30-Dec-14 5:11
sudevsu30-Dec-14 5:11 
GeneralMy vote of 4 Pin
jgakenhe25-Dec-14 5:17
professionaljgakenhe25-Dec-14 5:17 
GeneralRe: My vote of 4 Pin
sudevsu28-Dec-14 11:33
sudevsu28-Dec-14 11:33 
Suggestioncode-design-optimization Pin
Mr.PoorEnglish25-Dec-14 3:14
Mr.PoorEnglish25-Dec-14 3:14 
GeneralRe: code-design-optimization Pin
sudevsu28-Dec-14 11:31
sudevsu28-Dec-14 11:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.