HTML Control ASP.Net

<%@ Page Language=VB Debug=true %>

Sub SubmitButton_Click(Source As Object, e As EventArgs)
'   Not working 
'   Change the following folder as your settings
'    MyFile.PostedFile.SaveAs("./" & txtFileSaveAs.Value)
    TheMessage.InnerHTML = "File uploaded!"
End Sub



Uploading Files with the HTMLInputFile Control


    enctype="multipart/form-data" 
    runat="server">
Enter the name and path of the file to upload:


    id="MyFile" 
    type="file" 
    runat="server"
>



Enter the name only to save the file as: 

    id="txtFileSaveAs" 
    type="text" 
    runat="server"
>



    id="TheMessage"
    runat="server"
>




    runat="server"
    type=button 
    value="Upload" 
    OnServerClick="SubmitButton_Click" 
>