假设有图片存于E:\\蛋糕\\巧克力蛋糕\\图片.jpg,用.net中fileupload选了这张图片,(接着看补充)
发布网友
发布时间:2022-05-06 22:22
我来回答
共4个回答
热心网友
时间:2023-09-26 06:28
像你这样存储路径的话,说先要把图片上传到你的项目里面 然后在获取路径存储
protected void Button1_Click(object sender, EventArgs e)
{
//上传图片
string connection = "XXXXX"//你的数据库连接串
SqlConnection conn = new SqlConnection(connection);
string path = Server.MapPath("~/蛋糕"); // 保存在项目中蛋糕文件夹
string filepath = FileUpload1.PostedFile.FileName;
string name = filepath.Substring(filepath.LastIndexOf("\\")+1);//获取文件名
string Extend = filepath.Substring(filepath.LastIndexOf(".")+1);//获取格式名
if (Extend == "jpg" || Extend == "gif" || Extend == "bmp")
{
FileUpload1.SaveAs(path + "\\" + name);
string filepath1 = "~/蛋糕/" + name;
conn.Open();
string sql = "insert into Picture values('" + filepath1 + "')";
SqlCommand cmd = new SqlCommand(sql, conn);
cmd.ExecuteNonQuery();
Response.Write("<script>alert('插入成功!')</script>");
}
else
{
Response.Write("<script>alert('图片格式不正确!')</script>");
}
}
热心网友
时间:2023-09-26 06:29
可以取出来上传图片的实际路径地址,然后将这个字符串保存在数据库就行了,你也可以真实的保存图片的流字节,只是太浪费数据库空间了
热心网友
时间:2023-09-26 06:29
这个一般在做网站的时候,会有一个单独的域名存放图片,然后在数据库的时候只存放这样图片的相对路径
热心网友
时间:2023-09-26 06:30
我贴一段代码给你看看
请问你是什么浏览器,刚才试了下,IE下可以,其他浏览器不行