All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
怎样在PHP,中运用,SimpleXML,处理任务_php资料_编程技术
delphi高级vcl组件状态栏组件(TStatusBar)使用实例
asp.net2.0验证控件之验证控件典型应用实例
ASP.NET代码控制页面部分元素隐藏与显示_[Asp.Net教程]
AJAX初体验之上手篇_[AJAX教程]
教你轻松掌握SQL Server的数据同步技术_[SQL Server教程]
使用ascx和Div来扩充列表框选择功能_[Asp.Net教程]
教程:XSLT,Designer快速入门指南_.net资料_编程技术
使用.NET多线程技术显示实时股票信息_.net资料_编程技术
ASP.NET日历控件二次开发和使用_[Asp.Net教程]
Reading number is top 10 pictures
西游四格漫画(四)
大四女生借债隆胸成功
In the world the most mysterious 21 place landscape1
A man's favorite things10
9.3阅兵全景图7-指挥系统和后勤保障系统梯队
The world's top ten most beautiful railway station2
陪睡门马睿菈自曝写真 称首拍大尺度照片3
Summer is most suitable for young people to travel in China2
生活中总有些低调的人,不经意间散发出土豪的气质
如果我是导演...
Download software ranking
Twenty piece of palm leaf
传奇私服架设教程
网络管理员第三版
Boxer vs Yellow1
艳兽都市
尖东毒玫瑰A
Kung.Fu.Panda.2
C#编程思想
Sora aoi, the maid, students' uniforms
Proficient in JavaScript
归海一刀 published in(发表于) 2014/1/30 1:33:30 Edit(编辑)
多文件上传Asp.net(C#)_[Asp.Net教程]

多文件上传Asp.net(C#)_[Asp.Net教程]

多文件上传Asp.net(C#)_[Asp.Net教程]

















FileUp.aspx 页面
1<%@ Page language="c#" Codebehind="FileUp.aspx.cs" AutoEventWireup="false" Inherits="TestCenter.FileUp" %>
2
3
4
5 多文件上传
6
13
14
15
16


17

多文件上传


18


19


20
21
22
23


24


25 26 Width="500px" BorderStyle="None" BorderColor="White">
27


28


29
30
31
32



//****************************************************************
//////FileUp.aspx.cs


1using System;
2using System.Collections;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Web;
7using System.Web.SessionState;
8using System.Web.UI;
9using System.Web.UI.WebControls;
10using System.Web.UI.HtmlControls;
11
12namespace TestCenter
13{
14 /**////
15 /// 实现多文件上传
16 ///

17 public class FileUp: System.Web.UI.Page
18 {
19 protected System.Web.UI.WebControls.Button UploadButton;
20 protected System.Web.UI.WebControls.Label strStatus;
21
22 private void Page_Load(object sender, System.EventArgs e)
23 {
24 if (this.IsPostBack) this.SaveImages();
25 }
26
27 private Boolean SaveImages()
28 {
29 /**////’遍历File表单元素
30 HttpFileCollection files = HttpContext.Current.Request.Files;
31
32 /**//// ’状态信息
33 System.Text.StringBuilder strMsg = new System.Text.StringBuilder();

34 strMsg.Append("上传的文件分别是:
");
35 try
36 {

37 for(int iFile = 0; iFile < files.Count; iFile++)
38 {
39 /**////’检查文件扩展名字
40 HttpPostedFile postedFile = files[iFile];
41 string fileName, fileExtension;
42 fileName = System.IO.Path.GetFileName(postedFile.FileName);
43 if (fileName != "")
44 {
45 fileExtension = System.IO.Path.GetExtension(fileName);
46 strMsg.Append("上传的文件类型:" + postedFile.ContentType.ToString() + "
");
47 strMsg.Append("客户端文件地址:" + postedFile.FileName + "
");
48 strMsg.Append("上传文件的文件名:" + fileName + "
");
49 strMsg.Append("上传文件的扩展名:" + fileExtension + "

");
50 /**////’可根据扩展名字的不同保存到不同的文件夹
51 ///注意:可能要修改你的文件夹的匿名写入权限。
52 postedFile.SaveAs(System.Web.HttpContext.Current.Request.MapPath("images/") + fileName);

53 }
54 }
55 strStatus.Text = strMsg.ToString();

56 return true;
57 }
58 catch(System.Exception Ex)
59 {
60 strStatus.Text = Ex.Message;
61 return false;
62 }
63 }
64



































添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.