ASP Net Controls ASP.Net Tutorial

<%@ Page language="C#"%>
<%@ Import Namespace="System.IO" %>

    void UploadButton_Click(object sender, EventArgs e)
    {
        string savePath = UploadPath.Text.ToLower();
        if (!Directory.Exists(savePath))
        {
            Response.Write(String.Format("

The upload path doesn't exist: {0}

",
                savePath));
            Response.End();
        }
        if (FileUpload1.HasFile)
        {
            string fileName = FileUpload1.FileName;
            savePath += fileName;
            FileUpload1.SaveAs(savePath);
            UploadStatusLabel.Text = "File saved as: " + savePath + "";
        }
        else
        {
            UploadStatusLabel.Text = "You did not specify a file to upload.";
        }
    }



    File Upload


    
        
          

Select a picture to upload:


            Upload Path
            
            
            Picture to upload
            
            
           
                          text="Upload"
               onclick="UploadButton_Click"
               runat="server">