ASP.NET 기본 컨트롤FileUpload 업로드 컨트롤

1455 단어 fileupload
프론트 데스크 코드:
<asp:FileUpload ID="FileUpload" runat="server" />

<asp:Button ID="BtnUp" runat="server" onclick="BtnUp_Click" Text="   " />

<asp:Label ID="LabMsg" runat="server"></asp:Label>


백그라운드 코드:
using System;

using System.Collections.Generic;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;



namespace docnet

{

    public partial class up : System.Web.UI.Page

    {

        protected void Page_Load(object sender, EventArgs e)

        {



        }



        protected void BtnUp_Click(object sender, EventArgs e)

        {

            if (FileUpload.HasFile)

            {

                string savePath = Server.MapPath("~/upload/");//                

                //                ,        

                if (!System.IO.Directory.Exists(savePath))

                {

                    System.IO.Directory.CreateDirectory(savePath);

                }

                savePath = savePath + "\\" + FileUpload.FileName;

                FileUpload.SaveAs(savePath);

                LabMsg.Text = string.Format("<a href='upload/{0}'>upload/{0}</a>", FileUpload.FileName);

            }

            else

            {

                LabMsg.Text = "          !";

            }

        }

    }

}

좋은 웹페이지 즐겨찾기