ajax+ashx上传文件到服务器保存数据到数据库

ajax+ashx上传文件到服务器保存数据到数据库,第1张

第一:建立Default.aspx页面

<html>

<head runat="server">

<title>ajax图片上传</title>

<script src="js/jquery-1.3.2.min.js" type="text/javascript"></script>

<script src="js/jquery.form.js" type="text/javascript"></script>

<script type="text/javascript">

function upload(){

var path = document.getElementById("File1").value

var img = document.getElementById("img1")

if($.trim(path)==""){

alert("请选择要上传的文件")

return

}

$("#form1").ajaxSubmit({

success: function (str) {

if(str!=null &&str!="undefined"){

if (str == "1") {alert("上传成功")document.getElementById("img1").src="images/logo.jpg?"+new Date()/*上传后刷新图片*/}

else if(str=="2"){alert("只能上传jpg格式的图片")}

else if(str=="3"){alert("图片不能大于1M")}

else if(str=="4"){alert("请选择要上传的文件")}

else {alert(' *** 作失败!')}

}

else alert(' *** 作失败!')

},

error: function (error) {alert(error)},

url:'Handler.ashx', /*设置post提交到的页面*/

type: "post", /*设置表单以post方法提交*/

dataType: "text" /*设置返回值类型为文本*/

})

}

</script>

</head>

<body>

<form id="form1" runat="server">

<input id="File1" name="File1" type="file" />

<input id="iptUp" type="button" value="上传Logo" onclick="upload()"/>

<img id="img1" alt="网站Logo" src="images/weblogo.jpg" />

</form>

</body>

</html>

Like

this

比如前台有3个INPUT:

然后后台:

HttpFileCollection

files

=

HttpContext.Current.Request.Files

//这个files里面就是你上传文件的集合。遍历即可。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11542103.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存