国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > 建站經驗 > 正文

html+ashx 表單提-交示例

2019-11-02 14:33:39
字體:
來源:轉載
供稿:網友

 這篇文章主要介紹了html+ashx 表單提交的具體實現,需要的朋友可以參考下

1,sumbit表單提交  WebForm1.aspx源碼: 代碼如下:<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="NETFormDemo.ashx.WebForm1" %>  <!DOCTYPE html>  <html xmlns="http://www.w3.org/1999/xhtml"> <head > <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <script type="text/javascript">  </script> </head> <body> <form id="form1" action="submitForm.ashx" > <div> <input type="submit" value="提交" /> </div> </form> </body> </html>  submitForm.ashx源碼: 代碼如下:using System; using System.Collections.Generic; using System.Linq; using System.Web;  namespace NETFormDemo.ashx { /// <summary> /// submitForm 的摘要說明 ///
探索發現[www.9-39.com/html/explore/]
</summary> 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 源碼: 代碼如下:<!DOCTYPE html>  <html xmlns="http://www.w3.org/1999/xhtml">  <head> <title></title> <script src="test1.js" type="text/javascript"></script> <script src="jquery-1.4.min.js" type="text/javascript"></script> <script type="text/javascript"> function add(url) { var A = $("#a1").val(); var B = $("#b1").val(); $.ajax({ url: "ashx/add.ashx?i=" + A + "&j=" + B, data: { num1: A, num2: B }, dataType: "html", success: function (result) { } }); } </script> </head>  <body> <form id="form1" runat="server"> <input type="text" id="a1" /> <input type="text" id="b1"/> <input type="button" onclick="add()"/> <label id="lb"></label> </form> </body>  </html>  add.ashx源碼: 代碼如下:using System; using System.Collections.Generic; using System.Linq; using System.Web;  namespace NETFormDemo.ashx { /// <summary> /// Login 的摘要說明 /// </summary> 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; } }   } }  
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 米脂县| 静安区| 新源县| 酒泉市| 鄂托克前旗| 新余市| 灵石县| 高安市| 临猗县| 昔阳县| 东乡族自治县| 衡南县| 阳谷县| 内江市| 宁明县| 颍上县| 吉林省| 山阳县| 美姑县| 桐城市| 中西区| 英德市| 宣武区| 景德镇市| 江西省| 耿马| 扎兰屯市| 湖北省| 阳原县| 平罗县| 石河子市| 湖州市| 格尔木市| 澄迈县| 青阳县| 阳朔县| 江北区| 贵南县| 乐亭县| 乐亭县| 防城港市|