コード例 #1
0
        protected void Submit_Click(object sender, EventArgs e)
        {
            if (FileUploadAuthorPicture.HasFile)
            {
                string fileName   = FileUploadAuthorPicture.FileName;
                string folderPath = Server.MapPath("~/Files/Images/");
                string image      = "/Files/Images/" + fileName;
                string storeImage = folderPath + fileName;
                if (!Directory.Exists(folderPath))
                {
                    Directory.CreateDirectory(folderPath);
                }
                FileUploadAuthorPicture.SaveAs(storeImage);

                lblFileUploadAuthorPicture.Text      = "Image upload successfully";
                lblFileUploadAuthorPicturePath.Text  = Request.UrlReferrer + image;
                lblFileUploadAuthorPicture.ForeColor = System.Drawing.Color.Green;
            }
            else
            {
                lblFileUploadAuthorPicture.ForeColor = System.Drawing.Color.Red;
                lblFileUploadAuthorPicture.Text      = "Please select Image";
            }

            AuthorController ac = new AuthorController();

            ac.Insert(txtAuthorName.Text, txtAuthorJobTitle.Text, txtAuthorAddress.Text, txtAuthorEmail.Text, txtAuthorWebsite.Text, lblFileUploadAuthorPicturePath.Text, txtAuthorLinkedIn.Text, txtAuthorFacebook.Text, txtAuthorTwitter.Text, txtAuthorInstagram.Text, int.Parse(ddlLanguageId.SelectedValue));
            Response.Redirect("ListAuthor.aspx");
        }