基於JQuery實現非同步重新整理的代碼

來源:互聯網
上載者:User

今天很簡單介紹這一封裝的調用
樣本如下:
調用頁面:JqueryTest.aspx(注:後台無代碼)
複製代碼 代碼如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="JqueryTest.aspx.cs" Inherits="XmlHttpRequestTest.JqueryTest" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
<script src="JS/jquery-1.4.2.js" type="text/javascript"></script>
<script language="javascript">
function test() {
$.ajax({
type: "POST",
url: "JqueryService.aspx",
data: "userName=123&password=456" ,
success: function(data) {
if (data == "true") {
alert("登陸成功!");
}
else {
alert("登陸失敗");
}
}
});
}
function btntestajax_onclick() {
test();
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input id="btntestajax" type="button" value="測試非同步重新整理" onclick="return btntestajax_onclick()" /></div>
</form>
</body>
</html>

被調用介面:JqueryService
前台:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="JqueryService.aspx.cs" Inherits="XmlHttpRequestTest.JqueryService" %>
後台:
複製代碼 代碼如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace XmlHttpRequestTest
{
public partial class JqueryService : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
String userName=Request.Form["userName"].ToString();
String password=Request.Form["password"].ToString();
if (userName.Equals("123") && password.Equals("456"))
{
Response.Write("true");
}
else
{
Response.Write("false");
}
}
}
}

注:由於代碼過於簡單,不做詳細說明,有不明白的地方,請自行參考相關資料.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.