asp.net ajax怎样传值,JQuery在asp.net中三种ajax传值

  • Post author:
  • Post category:其他


1)通过webservice,注意去掉注释[System.Web.Script.Services.ScriptService]这行前的注释

2)通过aspx.cs文件中的静态方法

3)通过aspx文件url

WebForm1.aspx

WebForm1.aspx

Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/–>

function Ws() {

$.ajax({

type: “POST”,

contentType: “application/json; charset=utf-8”,

url: “WebService1.asmx/HelloWorld2”,

data: “{name:’xiaoxiao’}”,

dataType: ‘json’,

success: function (result) {

alert(result.d);

}

});

}

function StaticMethod() {

$.ajax({

type: “POST”,

contentType: “application/json; charset=utf-8”,

url: “aspxpage.aspx/SayHello2”,

data: “{name:’xiaoxiao’}”,

dataType: ‘json’,

success: function (result) {

alert(result.d);

}

});

}

function FromPage() {

$.ajax({

type: “POST”,

contentType: “application/json; charset=utf-8”,

url: “dataContent.aspx?nowtime='” + new Date() + “‘”,

data: “{}”,

dataType: ‘html’,

success: function (result) {

alert(result);

}

});

}

以上是启动页面,WebForm1.aspx.cs没有代码

WebService1.asmx

Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/–>using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using System.Web.Services;

namespace asp.net

{

///

/// WebService1 的摘要说明

///

[WebService(Namespace = “http://tempuri.org/”)]

[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]

[System.ComponentModel.ToolboxItem(false)]

// 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。

[System.Web.Script.Services.ScriptService]

public class WebService1 : System.Web.Services.WebService

{

[WebMethod]

public string HelloWorld()

{

return “Hello World”+System.DateTime.Now.ToLongTimeString();

}

[WebMethod]

public string HelloWorld2(string name)

{

return “Hello World” + name + System.DateTime.Now.ToLongTimeString();

}

}

}

以上是webservice中的代码

aspxpage.aspx.cs

Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/–>using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.Services;

namespace asp.net

{

public partial class aspx页面代替ws : System.Web.UI.Page

{

protected void Page_Load(object sender, EventArgs e)

{

}

[WebMethod]

public static string SayHello()

{

return “Hello”;

}

[WebMethod]

public static string SayHello2(string name)

{

return “Hello”+name;

}

}

}

以上是针对第二条 通过aspx.cs中的静态方法 注意方法前要加 [WebMethod],aspxpage.aspx页面没代码.

dataContent.aspx.cs

Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/–>using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.IO;

namespace asp.net

{

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

{

protected void Page_Load(object sender, EventArgs e)

{

Response.Clear();

Page.ViewStateMode = ViewStateMode.Disabled;

if (Request.QueryString[“nowtime”] != null)

{

string stime = Request.QueryString[“nowtime”].ToString();

Response.Write(stime);

}

Response.Flush();

}

}

}

以上是针对第三条 用url传值 通过aspx页面保存数据。dataContent.aspx页面没有代码.

python笔记-20 django进阶 (model与form、modelform对比,三种ajax方式的对比,随机验证码,kindeditor)

一.model深入 1.model的功能 1.1 创建数据库表 1.2 操作数据库表 1.3 数据库的增删改查操作 2.创建数据库表的单表操作 2.1 定义表对象 class xxx(models.M …

ASP.NET中几种加密方法

下面就是ASP.NET中几种加密方法.加密算法有两种,也就是上面提到的MD5和SHA1,这里我举的例子是以MD5为例,SHA1大致相同,只是使用的类不一样. MD5的全称是Message-Digest …

ASP.NET的三种开发模式

前言 ASP.NET 是一个免费的Web开发框架,是由微软在.NET Framework框架中所提供的,或者说ASP.NET是开发Web应用程序的类库,封装在System.Web.dll 文件中.AS …

iOS开发UI篇—iOS开发中三种简单的动画设置

iOS开发UI篇—iOS开发中三种简单的动画设置 [在ios开发中,动画是廉价的] 一.首尾式动画 代码示例: // beginAnimations表示此后的代码要“参与到”动画中 [UIView b …

C#中三种定时器对象的比较

·关于C#中timer类 在C#里关于定时器类就有3个1.定义在System.Windows.Forms里2.定义在System.Threading.Timer类里3.定义在System.Timers …

转-Web Service中三种发送接受协议SOAP、http get、http post

原文链接:web服务中三种发送接受协议SOAP/HTTP GET/HTTP POST 一.web服务中三种发送接受协议SOAP/HTTP GET/HTTP POST 在web服务中,有三种可供选择的发 …

ASP.NET提供三种主要形式的缓存

ASP.NET提供三种主要形式的缓存:页面级输出缓存.用户控件级输出缓存(或称为片段缓存)和缓存API.

jquery取消事件冒泡的三种方法展示

jquery取消事件冒泡的三种方法展示 html代码