This is my code behind file where button click event is there and i am saving all the attachments that are sent in a folder but now i want to create a folder with email subject and save that attachment in that folder pls help!!!
protected void Button1_Click(object sender, EventArgs e) { string temp = ""; Email em = new Email(); if (FileUpload1.HasFile) { System.IO.Directory.CreateDirectory(MapPath("~/Mail_Attachments/" + txtSubject.Text )); I WANT TO ADD THE ...

Go to the complete details ...