博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UI upload 多文件上传
阅读量:6479 次
发布时间:2019-06-23

本文共 1080 字,大约阅读时间需要 3 分钟。

 

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:

</httpModules>

本文转自曾祥展博客园博客,原文链接:http://www.cnblogs.com/zengxiangzhan/archive/2009/12/21/1628726.html,如需转载请自行联系原作者

你可能感兴趣的文章
GraphicsLab Project之辉光(Glare,Glow)效果 【转】
查看>>
<转>Python: __init__.py 用法
查看>>
Linux Curl命令
查看>>
046 SparlSQL中的函数
查看>>
-27979 LoadRunner 错误27979 找不到请求表单 Action.c(73): Error -27979: Requested form not found...
查看>>
[LeetCode] Minimum Depth of Binary Tree
查看>>
,net运行框架
查看>>
Java 中 Emoji 的正则表达式
查看>>
Mixin Network第一届开发者大赛作品介绍- dodice, diceos和Fox.one luckycoin
查看>>
安卓Glide(4.7.1)使用笔记 01 - 引入项目
查看>>
中金易云:为出版社找到下一本《解忧杂货店》
查看>>
Flex布局
查看>>
Material Design之 AppbarLayout 开发实践总结
查看>>
Flutter之MaterialApp使用详解
查看>>
DataBinding最全使用说明
查看>>
原生Js交互之DSBridge
查看>>
Matlab编程之——卷积神经网络CNN代码解析
查看>>
三篇文章了解 TiDB 技术内幕 —— 说计算
查看>>
copy strong weak assign的区别
查看>>
OpenCV 入门
查看>>