使用上传与ashx处理程序

本文关键字:ashx 处理 程序 | 更新日期: 2023-09-27 18:07:38

我有一个表单,其中有一些文本框,下拉框以及图像。我使用敲出js来保存表单的详细信息。我正在使用uploadify插件将我的图像上传到本地文件夹。我已经实现了所有这些事情,但是当涉及到保存值到现在为止,我使用了aspx代码。为了上传,我们不得不选择ashx。所以这就像两个服务器端的帖子将要发生!!

所以我想保存我的数据在ashx页,而不是aspx。

但是我很困惑到底在哪里开始我的上传…请有人帮助我这个!!

我正在保存我的值在保存按钮事件如下!!

     self.AddEvent = function (args) {          
       // Here--> $('#file_upload').uploadify('upload');
                    ajax.Post("../Scripts/uploadify/UploadHandler.ashx", JSON.stringify({ objEnt: args }), false).success(function (data) {   
                    if (data.d[0] > 0) {
        // or Here-->            $('#file_upload').uploadify('upload');
                    alert('success');
                  }

和我的文件上传设置为:

   $('#file_upload').uploadify({
                'swf': '../Scripts/uploadify/uploadify.swf',
                'uploader': '../Scripts/uploadify/UploadHandler.ashx',
                'method': 'post',
                'formData': { 'someKey': Filename },
                'buttonText': 'Browse',
                'auto': false,
                'folder': 'upload',
                'fileTypeExts': '*.jpg;*.jpeg;*.gif;*.png',
                'onSelect': function (file) {
                    var ext = file.name.split('.').pop();
                    $("#filename").val(Filename + '.' + ext);
                },
                'onUploadSuccess': function (file, data, response) {
                    if (response == true) {
                       $("#eventGrid").jqxGrid('updatebounddata');

                    }
                }
            });

不可能调用self。在我的情况下出现了"onUploadsuccess"!!请建议我一些最好的方法来存储我的数据和图像在同一时间在ashx处理程序。

ashx:

  public void ProcessRequest(HttpContext context)
{
    context.Response.ContentType = "application/json";
    var data = context.Request;
    var sr = new StreamReader(data.InputStream);
    var stream = sr.ReadToEnd();
    var javaScriptSerializer = new JavaScriptSerializer();
    var asd = javaScriptSerializer.Deserialize<RootObject>(stream);
    string Newname = context.Request.Form["someKey"];
    BAL Bl = new BAL();
    string[] args = new string[2];
   //AddEvent method will add my data into database add return response "Success"//
    args = AddEvent(asd.objEnt);
        HttpPostedFile PostedFile = context.Request.Files["Filedata"];
            string ext = Path.GetExtension(PostedFile.FileName);
            string savepath = "";
            string temppath = "";
            temppath = System.Configuration.ConfigurationManager.AppSettings["FolderPath"];
            savepath = context.Server.MapPath(temppath);
            string fileName = Newname + ext;
            if (!Directory.Exists(savepath))
                Directory.CreateDirectory(savepath);
            PostedFile.SaveAs(savepath + @"'" + fileName);
            context.Response.Write(temppath + "/" + fileName);
           // context.Response.Write(args);
            context.Response.StatusCode = 200;
        }
    }

使用上传与ashx处理程序

 $("#<%=FileUpload1.ClientID%>").uploadify({
            'uploader': 'Upload.ashx',
            'swf': 'uploadify/uploadify.swf',
            'script': 'Upload.ashx',
            'cancelImg': 'images/cancel.png',
            'folder': '../Upload',
            'multi': true,
            'buttonText': 'select picture',
            'fileExt': '*.jpg;*.png;*.gif;*.bmp;*.jpeg',
            'auto': false,
            'onUploadStart': function () {

            }
        });

$.ajax({
            type: "POST",
            url: 'WebServiceAdmin.asmx/SaveData',
            data: "{'p':'" + datam+ "'}",
            dataType: "json",
            contentType: "application/json; charset=utf-8",
            success: function (d) { $('#FileUpload1').uploadify('upload', '*');  },
            error: function () {  }
        });