How to use Fileupload to save a resume using asp.net c#
How to use Fileupload to save a resume using asp.net c#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Mar 28, 2012, 12:44 AM
Please refer Our recommended articles
http://www.c-sharpcorner.com/uploadfile/mcbkruse/how-to-upload-files-in-Asp-Net/default.aspx
http://www.c-sharpcorner.com/uploadfile/raghavau/file-uploading-in-Asp-Net-2-0/default.aspx
http://www.c-sharpcorner.com/UploadFile/mahesh/FileUpload10092005172118PM/FileUpload.aspx
Thanks
SenthilkumarPosted Mar 28, 2012, 12:32 AM
Design the page to upload the resume.
The code behind file
protected void btnUpload_Click(object sender, EventArgs e)
{
if (!System.IO.Directory.Exists(Server.MapPath("Resumes")))
{
uploadResume.SaveAs(Server.MapPath("Resumes\\") + uploadResume.FileName);
}
}