if(fileupload.hasfile) //判断是否存在文件
{
string FilePath = Server.MapPath("/UploadFile/")//获取图像存的路径
string Extension = Path.GetExtension(fileupload.PostedFile.FileName) //获取文件的类型
if(extension != ".jpg") //判断是不是jpg格式,需要其他格式多加几个或者用字符处理方式都行
return
string NewFilePath = DateTime.Now.ToString("yyyyMMddHHmmss") + Extension //重命名图片,也可以用图片原有的名字
fileupload.SaveAs(FilePath + NewFilePath) //图片存到对应路径
string ImgPath = "/UploadFile/" + NewFilePath //获取上传好的图片的路径
//将字符串存入数据库对应的字段即可
}
FileUpload1.PostedFile.SaveAs(path+"//images//"+FileUpload1.FileName)下面加上
AddressStr="http://" +Request.ServerVariables["HTTP_POST"] + Request.ApplicationPath + path + "//images//" +FileUpload1.PostedFile.FileName
再把AddressStr 存在数据库的字段中就行了。
string sqlStr = '' ........"
SqlConnectiong conn= new SqlConnect(...)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)