Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# how to refresh input field

Private Sub Refresh_Textbox_Text(ByVal TextBox As TextBox)
    Dim TempText As String = TextBox.Text
    TextBox.Clear()
    TextBox.Text = TempText
End Sub
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #refresh #input #field
ADD COMMENT
Topic
Name
2+7 =