vs2010上传图片到数据库
protectedvoidButton1_Click(objectsender,EventArgse){stringname=FileUpload1.FileName;/...
protected void Button1_Click(object sender, EventArgs e)
{
string name = FileUpload1.FileName;//获取已上传文件的名字
string size = FileUpload1.PostedFile.ContentLength.ToString();//获取上传文件的大小
string type = FileUpload1.PostedFile.ContentType;//获取上传文件的MIME内容类型
string type2 = name.Substring(name.LastIndexOf(".") + 1);//获得上传文件的后缀名
if (FileUpload1.HasFile)
{
string savePath = Server.MapPath("~/upload/");
if (!System.IO.Directory.Exists(savePath))
{
System.IO.Directory.CreateDirectory(savePath);
}
savePath = savePath + "\\" + FileUpload1.FileName;
FileUpload1.SaveAs(savePath);
}
}
这是我的后台源码。可以把文件上传到指定文件夹,但是上传到数据库怎么做?请各位大神不吝赐教,直接发给我源码就好,我自己理解,谢谢 展开
{
string name = FileUpload1.FileName;//获取已上传文件的名字
string size = FileUpload1.PostedFile.ContentLength.ToString();//获取上传文件的大小
string type = FileUpload1.PostedFile.ContentType;//获取上传文件的MIME内容类型
string type2 = name.Substring(name.LastIndexOf(".") + 1);//获得上传文件的后缀名
if (FileUpload1.HasFile)
{
string savePath = Server.MapPath("~/upload/");
if (!System.IO.Directory.Exists(savePath))
{
System.IO.Directory.CreateDirectory(savePath);
}
savePath = savePath + "\\" + FileUpload1.FileName;
FileUpload1.SaveAs(savePath);
}
}
这是我的后台源码。可以把文件上传到指定文件夹,但是上传到数据库怎么做?请各位大神不吝赐教,直接发给我源码就好,我自己理解,谢谢 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询