• 大小: 0.02M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-24
  • 语言: C#
  • 标签: 上传  C#  文件  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Net;
using System.IO;
using System.Collections.Specialized;
using System.Text;

public partial class _Default : System.Web.UI.Page 
{
    public string Result = “null“;

    protected void Page_Load(object sender EventArgs e)
    {

    }

    protected void Submit_Click(object sender EventArgs e)
    {
        if (PostFile.PostedFile != null)
        {
            var t = PostRequest(PostFile.PostedFile);
            Result = t;
        }
    }

    protected string PostRequest(HttpPostedFile file)
    {
        //请求地址
        string url =
            “http://view.wps.cn/service/dotview/process.php?act=upload“;

        //创建HTTP Request对象
        HttpWebRequest req = WebRequest.Create(url) as HttpWebRequest;

        req.Method = “POST“; //设置请求方式为POST
        req.Accept = “text/*“; //设置HTTP标头的 A

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-03-14 00:12  C_文件上传\
     文件        1666  2017-03-14 00:12  C_文件上传.sln
     目录           0  2017-03-14 00:10  C_文件上传\.vs\
     目录           0  2017-03-14 00:10  C_文件上传\.vs\config\
     文件       85919  2017-03-14 00:10  C_文件上传\.vs\config\applicationhost.config
     目录           0  2017-03-14 00:10  C_文件上传\.vs\C_文件上传\
     目录           0  2017-03-14 00:10  C_文件上传\.vs\C_文件上传\v14\
     文件       15360  2017-03-14 00:10  C_文件上传\.vs\C_文件上传\v14\.suo
     目录           0  2012-08-07 15:09  C_文件上传\App_Data\
     文件        1130  2012-08-07 16:21  C_文件上传\Default.aspx
     文件        4898  2012-08-07 16:36  C_文件上传\Default.aspx.cs
     文件        8324  2017-03-13 23:26  C_文件上传\web.config

评论

共有 条评论