AJax技术

ajax数据传输方式实例详解(4)

字号+ 作者:H5之家 来源:H5之家 2017-04-15 08:04 我要评论( )

附加文件,AjaxOperations.aspx的html页面没有改变,AjaxOperations.aspx.cs代码稍作调整如下: using System;using System.Collections.Generic;using System.Web;using System.Web.UI;using System.Web.UI.WebCon

附加文件,AjaxOperations.aspx的html页面没有改变,AjaxOperations.aspx.cs代码稍作调整如下:

using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace WebTest2008 { public partial class AjaxOperations : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!string.IsNullOrEmpty(Request["action"]) && Request["action"] == "jsonOp") // 处理JSON { string responseJsonTxt = ""; string tempStr = Request["sendStr"].Trim(new char[] { '{', '}' }); // 在服务器上解释JSON需要引用一个能够转化JSON的组件:Json.Net,这里简单测试,略过Json.Net if (tempStr.Split(new char[] { ',' })[0].Split(new char[] { ':' })[1] == "\"test\"" && tempStr.Split(new char[] { ',' })[1].Split(new char[] { ':' })[1] == "\"test\"") { responseJsonTxt = "{\"msg\":\"验证通过!\"}"; // 测试用 } else responseJsonTxt = "{\"msg\":\"验证失败!\"}"; Response.Write(responseJsonTxt); Response.End(); } }

jsTest.html引入json.js文件(必须下载json.js文件,否则js报错),如下:

<html> <head> <title>js test</title> <script src="js/json.js" type="text/javascript"></script> <script src="js/testJs.js" type="text/javascript"></script> </head> <body> <form id="form1"> <div> 用户名:<input id="txtUserName" name="txtUserName" type="text" /> 密码:<input id="txtPwd" name="txtPwd" type="password" onblur="validatePwd(this)" /></div> </form> </body> </html>

希望本文所述对大家ajax程序设计有所帮助。


分享给小伙伴们:

本文标签: ajax/">ajax

相关文章

发表评论愿您的每句评论,都能给大家的生活添色彩,带来共鸣,带来思索,带来快乐。

  • 本类最热新闻

  •  

    1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

    相关文章
    • jquery 使用ajax提交form表单

      jquery 使用ajax提交form表单

      2017-04-15 09:00

    • AJAX和XmlHttpRequest下的Web开发(1)

      AJAX和XmlHttpRequest下的Web开发(1)

      2017-04-14 18:01

    • AJAX 向服务器发送请求 js开发教程

      AJAX 向服务器发送请求 js开发教程

      2017-04-14 16:04

    • jQuery Ajax调用WCF服务详细教程

      jQuery Ajax调用WCF服务详细教程

      2017-04-14 16:02

    网友点评
    i