Get me outta here!

3 Mart 2015 Salı

Fileupload Kullanımı - Asp.Net'te Dosya Upload Ederken İstediğin İsim ile Kaydetme

 Asp.Net'te  Dosya Upload Ederken İstediğin İsim ile Kaydetme Uygulamasıdır.Kullanıcı dosya seçtikten sonra TC kısmına ne yazarsa dosya server'a o şekilde kaydedilecektir.Bu işlemi yaparken FileUpload komutunu kullanıyoruz.

Bu Basit Programın Görüntüsü Aşağıdaki Gibidir.

Choromedeki Görüntüsü Aşağıdaki Gibidir.
Kodlarımız Aşağıdaki Gibi Olacaktır:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void Button1_Click(object sender, EventArgs e)
    {
      
        if (FileUpload1.HasFile)
        {
            string dosya = TextBox1.Text + FileUpload1.FileName.Substring((FileUpload1.FileName.Length - 4));
            string yol = Server.MapPath("~/resimler/");
            string adres = (yol + dosya);
            this.FileUpload1.SaveAs(adres);
          


           
            Label6.Text = "Sayın" +" " +TextBox2.Text+ " "+TextBox3.Text+ " ""bilgileriniz aktarılmıştır"+ TextBox5.Text+ " " + "adresinize dönüş yapılacaktır " +
              
                FileUpload1.FileName + "<br/> Dosya Türü:" +
                FileUpload1.PostedFile.ContentType + "<br/> Dosya Boyutu:" +
            
               FileUpload1.PostedFile.ContentLength;


        }
        else
            Response.Write("Lütfen Yüklenecek Bir Dosya Seçiniz");
    }
}


0 yorum:

Yorum Gönder