资源简介

Asp.net Mvc 使用webUpload 上传图片支持多图上传

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Routing;

namespace ImageUpload
{
    // Note: For instructions on enabling IIS6 or IIS7 classic mode 
    // visit http://go.microsoft.com/?linkId=9394801
    public class MvcApplication : System.Web.HttpApplication
    {
        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();

            WebApiConfig.Register(GlobalConfiguration.Configuration);
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      85881  2016-07-14 17:53  ImageUploadSolu\.vs\config\applicationhost.config

    ..A..H.     77312  2016-07-14 17:57  ImageUploadSolu\.vs\ImageUploadSolu\v14\.suo

     文件        277  2014-12-10 16:43  ImageUploadSolu\ImageUpload\App_Start\FilterConfig.cs

     文件        602  2014-12-10 16:43  ImageUploadSolu\ImageUpload\App_Start\RouteConfig.cs

     文件        480  2014-12-10 16:43  ImageUploadSolu\ImageUpload\App_Start\WebApiConfig.cs

     文件      12288  2016-07-14 17:55  ImageUploadSolu\ImageUpload\bin\ImageUpload.dll

     文件       2168  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\ImageUpload.dll.config

     文件      17920  2016-07-14 17:55  ImageUploadSolu\ImageUpload\bin\ImageUpload.pdb

    .......     45416  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\Microsoft.Web.Infrastructure.dll

    .......    374784  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\Newtonsoft.Json.dll

     文件     418776  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\Newtonsoft.Json.xml

    .......    168544  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Net.Http.Formatting.dll

     文件     137872  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Net.Http.Formatting.xml

    .......    138328  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.Helpers.dll

     文件      74208  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.Helpers.xml

    .......    323168  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.Http.dll

    .......     73312  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.Http.WebHost.dll

     文件      10071  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.Http.WebHost.xml

     文件     379561  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.Http.xml

    .......    506976  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.Mvc.dll

     文件     847872  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.Mvc.xml

    .......    264792  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.Razor.dll

     文件     365160  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.Razor.xml

    .......     41048  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.WebPages.Deployment.dll

     文件       2812  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.WebPages.Deployment.xml

    .......    204376  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.WebPages.dll

    .......     39512  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.WebPages.Razor.dll

     文件      17776  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.WebPages.Razor.xml

     文件     223301  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\System.Web.WebPages.xml

     文件      20064  2014-12-10 16:43  ImageUploadSolu\ImageUpload\bin\zh-Hans\System.Net.Http.Formatting.resources.dll

............此处省略267个文件信息

评论

共有 条评论