Net Core教程

用最基础的 ASP.NET ASHX 实现一个文件上传功能

本文主要是介绍用最基础的 ASP.NET ASHX 实现一个文件上传功能,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

简单的一个 ASHX:

<%@ WebHandler Language="C#" Class="TestHandler" %>

using System;
using System.Web;
using System.IO;

public class TestHandler : IHttpHandler  
{
    public void ProcessRequest(HttpContext context)  
    {
        context.Response.ContentType = "text/html;charset=utf-8";
        
        if (context.Request.Files.Count > 0)
        {
            HttpPostedFile file = context.Request.Files[0];
            string fileName = Path.GetFileName(file.FileName);
            string path = context.Server.MapPath("/" + fileName);
            file.SaveAs(path);
            context.Response.Write(@"success: " + path);
        }
        
        context.Response.Write(@"
        <form action='test.ashx' method='post' enctype='multipart/form-data'>
            <input type='file' name='upload_file' />
            <input type='submit'>
        </form>");
    }
    
    public bool IsReusable { get { return false; } }
}

当上传遇到大小限制时,可以修改一下 web.config 文件:

<configuration>
    <system.web>
        <customErrors mode="Off"/>
        <!-- 最大请求长度,单位为KB(千字节),默认为4M,设置为1G,上限为2G -->
        <httpRuntime maxRequestLength="1048576" executionTimeout="3600" />
    </system.web>
    <system.webServer> 
        <!-- 允许上传文件长度,单位字节(B),默认为30M,设置为1G,最大为2G -->
        <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="1073741824"/>
            </requestFiltering>
        </security>
    </system.webServer>
</configuration>

参考:

https://www.cnblogs.com/g1mist/p/3222255.html

https://blog.csdn.net/HerryDong/article/details/100549765

https://www.cnblogs.com/xielong/p/10845675.html

这篇关于用最基础的 ASP.NET ASHX 实现一个文件上传功能的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!