Posts

Showing posts with the label image

Image file upload in a selected folder in C#

protected void LinkButton1_Click(object sender, EventArgs e) {     string filePath = "" ;     if (fileUpload.HasFile)     {         if (CheckFileType())         {             string postedLogo = fileUpload.PostedFile.FileName.ToString();             string fileName = postedLogo.Split( new char [] { '\\' }).Last();             string fileExtension = fileUpload.PostedFile.FileName.Split( new char [] { '.' }).Last().ToLower();             filePath = "~/MemberPhoto/" + fileUpload.FileName.Replace(fileName, Session[ "UserId" ].ToString() + "." + fileExtension);             try             {                 System.Drawing.Image UploadedImage = System.Drawing.Image.FromStr...