jQuery结合C#上传文件的代码

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
jQuery结合C#上传文件的代码
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
  <script src="jquery-1.7.1.min.js"></script>
  <script src="jquery.form.js"></script>
  <script type="text/javascript">
  function upload() {
  $("#form1").ajaxSubmit({
  success: function (str) {
  alert(str);
  },
  error: function (error) { alert(error); },
  url: 'handler1.ashx', /*设置post提交到的页面*/
  type: "post", /*设置表单以post方法提交*/
  dataType: "text" /*设置返回值类型为文本*/
  });
  }
  </script>
</head>
<body>
  <form id="form1" runat="server" enctype="multipart/form-data">
  <input type="file" id="file" name="file" />
  <asp:Button ID="Button1" runat="server" Text="上传" OnClientClick="upload();return false;" />
  </form>
</body>
  
handler1.ashx
  
<%@ WebHandler Language="C#" Class="handler1" %>
  
using System;
using System.Web;
  
public class handler1 : IHttpHandler {
     
  public void ProcessRequest (HttpContext context) {
  context.Response.ContentType = "text/plain";
  HttpPostedFile file = context.Request.Files[0];
  String fileName = System.IO.Path.GetFileName(file.FileName);
  file.SaveAs(context.Server.MapPath("~/") + fileName);
  context.Response.Write("OK");
  }
   
  public bool IsReusable {
  get {
  return false;
  }
  }
}
  

标签: 代码

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:C# 生成简单验证码的代码

下一篇:php生成缩略图的三种模式