AjAX探究——JS调用实体类与赋值

本文介绍了一个使用 ASP.NET AJAX 的 Web 服务示例,该服务接收一个包含书籍信息的对象,并返回书籍详情字符串。示例展示了如何创建可序列化的 C# 类,以及如何在 Web 服务中实现方法来处理客户端请求。
摘要由CSDN通过智能技术生成
     
ContractedBlock.gif ExpandedBlockStart.gif BookInfo.cs
None.gifusing System;
None.gif
using System.Collections.Generic;
None.gif
using System.Linq;
None.gif
using System.Text;
None.gif
None.gif
namespace ClassProj
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
InBlock.gif    [Serializable]
InBlock.gif    
public class BookInfo
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public BookInfo() dot.gif{ }
InBlock.gif
InBlock.gif        
//在VS2008中可使用如下简化方式定义属性,是不是很简单了呢?!
ExpandedSubBlockStart.gifContractedSubBlock.gif
        public string Name dot.gifsetget; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public string Author dot.gifsetget; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
public int Price dot.gifsetget; }
ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}
ContractedBlock.gif ExpandedBlockStart.gif Book.asmx.cs
None.gifusing System;
None.gif
using System.Collections;
None.gif
using System.ComponentModel;
None.gif
using System.Data;
None.gif
using System.Linq;
None.gif
using System.Web;
None.gif
using System.Web.Services;
None.gif
using System.Web.Services.Protocols;
None.gif
using System.Xml.Linq;
None.gif
using System.Web.Script.Services;
None.gif
using ClassProj;
None.gif
None.gif
namespace Test
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// Book 的摘要说明
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    [WebService(Namespace = "http://tempuri.org/")]
InBlock.gif    [WebServiceBinding(ConformsTo 
= WsiProfiles.BasicProfile1_1)]
InBlock.gif    [ToolboxItem(
false)]
InBlock.gif    
// 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。
InBlock.gif
    [ScriptService]
InBlock.gif    [GenerateScriptType(
typeof(BookInfo))]
InBlock.gif    
public class Book : System.Web.Services.WebService
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif
InBlock.gif        [WebMethod]
InBlock.gif        
public string ShowInfo(BookInfo book)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
return "书的信息如下——书名:" + book.Name + ",价格:" + book.Price + "作者:" + book.Author;
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}
ContractedBlock.gif ExpandedBlockStart.gif Test.js
None.giffunction ShowInfo()
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
InBlock.gif    
var book=new ClassProj.BookInfo();
InBlock.gif    book.Name
="征服AJAX!";
InBlock.gif    book.Price
=25;
InBlock.gif    book.Author
="梦想";
InBlock.gif    
InBlock.gif    Test.Book.ShowInfo(book,CallBack_Function);
ExpandedBlockEnd.gif}

None.gif
None.gif
function CallBack_Function(ResponseStr)
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
InBlock.gif    $get(
"result").innerText=ResponseStr;
ExpandedBlockEnd.gif}
ContractedBlock.gif ExpandedBlockStart.gif AjaxStudy.aspx.cs
ExpandedBlockStart.gifContractedBlock.gif<%dot.gif@ Page Language="C#" AutoEventWireup="true" CodeBehind="AjaxStudy02.aspx.cs" Inherits="Test.AjaxStudy02" %>
None.gif
None.gif
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
None.gif
None.gif
<html xmlns="http://www.w3.org/1999/xhtml" >
None.gif
<head runat="server">
None.gif    
<title>无标题页</title>
None.gif
</head>
None.gif
<body>
None.gif    
<form id="form1" runat="server">
None.gif    
<div>
None.gif        
<asp:ScriptManager ID="ScriptManager1" runat="server">
ExpandedBlockStart.gifContractedBlock.gif            
<Scripts>dot.gif
InBlock.gif                
<asp:ScriptReference Path="~/JsFile/Test.js" />
ExpandedBlockEnd.gif
            
</Scripts>
None.gif            
<Services>
None.gif                
<asp:ServiceReference Path="~/Book.asmx" />
None.gif            
</Services>
None.gif        
</asp:ScriptManager>
None.gif        
<input id="Button1" type="button" value="测试一下" onclick="ShowInfo();" />
None.gif        
<div id="result"></div>
None.gif    
</div>
None.gif    
</form>
None.gif
</body>
None.gif
</html>
None.gif
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值