Extjs+C# 实现文件上传

Extjs 代码

var ImportPanel = new Ext.form.FormPanel({
        baseCls: 'x-plain',
        frame: false,

   // 注意formPanel里面的fileUpload一定要打开
        fileUpload: true,
        id: 'ImportPanel',
        url: 'Excel.aspx?ac=Import',
        items: [{
            xtype: 'textfield',

    // 注意要有以下字段
            inputType: 'file',
            fieldLabel: '请选择导入文件',
            id: 'stationFile',
            width: 150,
            allowBlank: false
        }]
    });
var ImportWinFrom = new Ext.Window({
    layout: 'fit',
    width: 360,
    height: 100,
    closeAction: 'hide',
    title:'导入数据',
    plain: true,
    items: ImportPanel,
    buttons: [{
        text: '提交',
        formPanel:this.ImportPanel,
        handler: function() {
            this.formPanel.form.submit({
                success: function(form, action) {
                    Ext.Msg.alert("导入成功", action.result.msg);
                    mportWinFrom.hide();
                },
                scope: this,
                failure: function(form, action) {
                    Ext.Msg.alert("导入失败", action.result.msg);
                    this.parent.SuperSearchWinForm.hide();
                }
            });
        }
    }, {
        text: '取消',
        handler: function() {
            ImportWinFrom.hide();
        }
    }]
});

C#代码

public void UploadFile()

{

   // 接收Http发送过来的文件

     HttpFileCollection files = HttpContext.Current.Request.Files;
         HttpPostedFile postedFile = files[0];
         Hashtable hash = new Hashtable();
         JavaScriptSerializer adapter = new JavaScriptSerializer();
            
         string url = "uploadfile/excel/" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx";
         try
         {
             postedFile.SaveAs(System.Web.HttpContext.Current.Request.MapPath(url));
         }
         catch
         {
             hash.Add("success",false);
             hash.Add("msg", "上传附件失败!");
             MyResponse(hash);
         }

}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值