zoukankan      html  css  js  c++  java
  • UI upload 多文件上传

    曾祥展

    曾祥展

    cs:

    using System;
    using System.Collections;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Web;
    using System.Web.SessionState;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.HtmlControls;
    
    public class WebForm1 : System.Web.UI.Page {
        protected ComponentArt.Web.UI.Upload Upload1;
    
      private bool IsOnWebSite()
      {
        return Request.Url.ToString().ToLower().Contains(".componentart.com");
      }
    
      private void Page_Load(object sender, System.EventArgs e)
      {
        Upload1.TempFileFolder = Server.MapPath("~/uploads/temp");
    
        if (!IsOnWebSite())
        {
          Upload1.DestinationFolder = Server.MapPath("~/uploads");
        }
      }
    
        #region Web Form Designer generated code
        override protected void OnInit(EventArgs e) {
            InitializeComponent();
            base.OnInit(e);
        }
        private void InitializeComponent() {
            this.Load += new System.EventHandler(this.Page_Load);
        }
        #endregion
    }

    web.confing:

    <httpHandlers>
      <add verb="*" type="ComponentArt.Web.UI.UploadProgressHandler,ComponentArt.Web.UI" path="ComponentArtUploadProgress.axd"/>
    </httpHandlers>
    
    
    <httpModules>
      <add type="ComponentArt.Web.UI.UploadModule,ComponentArt.Web.UI" name="ComponentArtUploadModule"/>
    </httpModules>
  • 相关阅读:
    反射API(二)
    反射API(一)
    session一二事
    自定义session的存储机制
    JavaScript 入门笔记
    PHP引用赋值
    九九乘法口诀表
    PHP流程控制笔记
    PHP函数总结 (七)
    Linux程序编辑器习题汇总
  • 原文地址:https://www.cnblogs.com/zengxiangzhan/p/1628726.html
Copyright © 2011-2022 走看看