HTML Controls ASP.Net Tutorial


protected void PhotoSubmit(object o, EventArgs e) {
    if(thePhoto.PostedFile != null) {
        try {
            string filepath = "C:\\temp\\" + DateTime.Now.Ticks.ToString();
            thePhoto.PostedFile.SaveAs(filepath);
            status.Text = "File saved as " + filepath;
            
        }
        catch (Exception exc) {
            status.Text = "An Error occurred processing the file.  Please try again." + exc.ToString();
        }
    }
}


Please select an image to submit: