C\#물리 적 경로 에 사진 을 업로드 하고 주 소 를 데이터베이스 에 저장 하 는 작은 예

4325 단어 C#사진 업로드
효과:


생각:
먼저 그림 의 물리 적 주 소 를 가 져 온 다음 에 판단 하여 그림 을 폴 더 에 저장 한 다음 에 그림 의 정 보 를 데이터베이스 에 저장 합 니 다.
데이터베이스:

create table image1
(
ID int identity(1,1) primary key,
ImageName varchar(100) ,
ImageType varchar(20),
ImagePath varchar(200)
)
코드:

<body>
    <form id="form1" runat="server">
    <div>
        <table>
            <tr>
                <td colspan="2" style="height: 21px">
                    &nbsp;
                </td>
            </tr>
            <tr>
                <td style="width: 400px">
                    <asp:FileUpload ID="FileUpload1" runat="server" />
                    &nbsp;<asp:Label ID="label1" runat="server" ForeColor="Red"></asp:Label>
                </td>
                <td style="width: 80px">
                    <asp:Button ID="UploadButton" runat="server" Text=" " OnClick="UploadButton_Click" />
                </td>
            </tr>
            <tr>
                <td colspan="2" align="center">
                    <br />
                    <br />
                    <asp:Image ID="Image1" runat="server" Height="118px" Width="131px" />
                </td>
            </tr>
        </table>
    </div>
    </form>
</body>

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;

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

        }
        string SQLString = ConfigurationManager.ConnectionStrings["ConnectionStr"].ToString();
        protected void UploadButton_Click(object sender, EventArgs e)
        {
            try
            {
                using (SqlConnection sqlcon = new SqlConnection(SQLString))
                {
                    string FullName = FileUpload1.PostedFile.FileName;//
                    FileInfo fi = new FileInfo(FullName);
                    string name = fi.Name;//
                    string type = fi.Extension;//
                    if (type == ".jpg" || type == ".gif" || type == ".bmp" || type == ".png")
                    {
                        string SavePath = Server.MapPath("~\\excel");//
                        this.FileUpload1.PostedFile.SaveAs(SavePath + "\\" + name);//
                        this.Image1.Visible = true;
                        this.Image1.ImageUrl = "~\\excel" + "\\" + name;//
                        string sql = "insert into image1(ImageName,ImageType,ImagePath) values('" + name + "','" + type + "','~\\excel" + name + "')";
                        SqlCommand cmd = new SqlCommand(sql, sqlcon);
                        sqlcon.Open();
                        cmd.ExecuteNonQuery();
                        this.label1.Text = " ";
                    }
                    else
                    {
                        this.label1.Text = " ";
                    }
                }
            }
            catch (Exception ex)
            {
                Response.Write(ex.Message);
            }
        }
    }
}

좋은 웹페이지 즐겨찾기