File Upload Control

crvasquez

Active member
Joined
Mar 3, 2008
Messages
40
Location
Florida
Programming Experience
10+
When a user selects a file to upload, I want to clear the value that is stored in the text box. If I had a text box I would write:

Me.txtFileName.Text = ""

With the File Upload Control I try to write the following:

Me.txtFileUpload.FileName = ""

but FileName is read only. Any ideas?

Thx
 
Back
Top