博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
步步为营-86-WSFUpload组件
阅读量:5334 次
发布时间:2019-06-15

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

文件上传组件,所需js文件和图片在百度网盘对应的文件夹下

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SWFUpload_Demo.aspx.cs" Inherits="BookShop.Web.Test.SWFUpload_Demo" %>
前台代码

 

using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Web;namespace BookShopManager.Web.Ashx{    ///     /// FileUpload 的摘要说明    ///     public class FileUpload : IHttpHandler    {        public void ProcessRequest(HttpContext context)        {            context.Response.ContentType = "text/plain";            HttpPostedFile file = context.Request.Files["Filedata"];            if (file != null)            {                string fileName = Path.GetFileName(file.FileName);                string fileExt = Path.GetExtension(fileName);                if (fileExt == ".jpg")                {                    string dir = "/FileUpload/" + DateTime.Now.Year + DateTime.Now.Month + DateTime.Now.Day + "/";                    if (!Directory.Exists(context.Request.MapPath(dir)))                    {                        Directory.CreateDirectory(context.Request.MapPath(dir));                    }                    string newFileName = Guid.NewGuid().ToString();                    string fullDir = dir + newFileName + fileExt;                    file.SaveAs(context.Request.MapPath(fullDir));                    context.Response.Write(fullDir);                }            }        }        public bool IsReusable        {            get            {                return false;            }        }    }}
服务器端代码

 

转载于:https://www.cnblogs.com/YK2012/p/7451308.html

你可能感兴趣的文章
BZOJ 1925: [Sdoi2010]地精部落( dp )
查看>>
c++中的string常用函数用法总结!
查看>>
界面交互之支付宝生活圈pk微信朋友圈
查看>>
[DLX精确覆盖+打表] hdu 2518 Dominoes
查看>>
SuperMap iServerJava 6R扩展领域开发及压力测试---判断点在那个面内(1)
查看>>
Week03-面向对象入门
查看>>
一个控制台程序,模拟机器人对话
查看>>
web.xml 中加载顺序
查看>>
pycharm激活地址
查看>>
hdu 1207 四柱汉诺塔
查看>>
Vue 2.x + Webpack 3.x + Nodejs 多页面项目框架(上篇——纯前端多页面)
查看>>
display:none与visible:hidden的区别
查看>>
我的PHP学习之路
查看>>
【题解】luogu p2340 奶牛会展
查看>>
对PostgreSQL的 SPI_prepare 的理解。
查看>>
解决响应式布局下兼容性的问题
查看>>
京东静态网页练习记录
查看>>
使用DBCP连接池对连接进行管理
查看>>
【洛谷】【堆+模拟】P2278 操作系统
查看>>
hdu3307 欧拉函数
查看>>