Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > C#/.NET入门教程

html+ashx 表单提交示例

来源:中文源码网    浏览:135 次    日期:2024-05-12 04:04:42
【下载文档:  html+ashx 表单提交示例.txt 】


html+ashx 表单提交示例
1,sumbit表单提交 WebForm1.aspx源码: 复制代码 代码如下: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="NETFormDemo.ashx.WebForm1" %>
submitForm.ashx源码: 复制代码 代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace NETFormDemo.ashx { /// /// submitForm 的摘要说明 /// public class submitForm : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; context.Response.Write("Hello World"); } public bool IsReusable { get { return false; } } } } 2,ajax提交 HtmlPage1.html 源码: 复制代码 代码如下:
add.ashx源码: 复制代码 代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace NETFormDemo.ashx { /// /// Login 的摘要说明 /// public class Login : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; int first = Convert.ToInt32(context.Request.Params["i"]); int sec = Convert.ToInt32(context.Request.Params["j"]); int res = first + sec; context.Response.Write(res); context.Response.Write("fdd ff"); } public bool IsReusable { get { return false; } } } }

相关内容