轻量级网页数据传递

首先应该写一个导航页面,它向你的ashx文件提交数据。可以创建一个aspx,名叫TestPostFile.aspx,如下

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestPostFile.aspx.cs" Inherits="TestPostFile"

     EnableViewState="false" ClientIDMode="Static" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title></title>

</head>

<body>

    <form id="form1" runat="server">

        <asp:Label ID="Label1" runat="server" Text="参数"></asp:Label>:<asp:TextBox ID="xyz" runat="server"></asp:TextBox>

        <hr />

        <asp:FileUpload ID="FileUpload1" runat="server" />

        <hr />

        <asp:Button ID="Button1" runat="server" Text="好,可以提交了!" />

    </form>

</body>

</html>

 

注意,因为无需回发,因此我们禁用页面的ViewState。同时由于实在是太简单了,因此我们使用Static模式来处理客户端id。

这个文件的codebehind代码是

using System;

 

public partial class TestPostFile : System.Web.UI.Page

{

    protected void Page_Load(object sender, EventArgs e)

    {

        this.form1.Action = "TestPostFile.ashx";

    }

}

 

它在提交数据时,提交了一个文本内容,同时提交了一个文件。你当然可以放上去更多的提交内容。而目标ashx文件可以这样写

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

using System;

using System.Web;

using System.Diagnostics;

public class TestPostFile : IHttpHandler

{

    public void ProcessRequest(HttpContext context)

    {

        context.Response.ContentType = "text/plain";

        var p1 = context.Request.Form["xyz"];

        var fs = context.Request.Files;

        if (fs.Count > 0)

        {

            //你可以使用 fs[0].SaveAs(.....) 保存文件

            context.Response.Write(fs[0].FileName);

        }

        Debug.Assert(p1 != null && fs != null);

    }

    public bool IsReusable

    {

        get

        {

            return false;

        }

    }

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值