Upload .txt file to server

Shims

Active member
Joined
Jun 15, 2003
Messages
39
i want to make a page that allows an upload to the server.
I have NO idea how to do this. someone help!
 
you can use ...
<INPUT id="FILE1" type="file" name="FILE1" RUNAT="server">

or in code-behind...

Private WithEvents FILE1 As New HtmlControls.HtmlInputFile()
 
Back
Top