白开心
IT博客
::
首页
:: ::
联系
::
聚合
::
管理
::
9 随笔 :: 76 文章 :: 28 评论 :: 0 Trackbacks
<
2024年12月
>
日
一
二
三
四
五
六
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
公告
独坐在路边街角,冷风吹醒,默默地伴着我的孤影。
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(12)
给我留言
查看公开留言
查看私人留言
文章分类
.Net(学习ing...)(39)
(rss)
Asp+vbScript(14)
(rss)
JavaScript(14)
(rss)
T-SQL(8)
(rss)
经典收藏(8)
(rss)
设计模式
(rss)
文章档案
2013年4月 (1)
2013年3月 (1)
2012年7月 (1)
2012年4月 (1)
2011年10月 (1)
2011年8月 (1)
2011年3月 (1)
2011年2月 (1)
2011年1月 (1)
2010年9月 (1)
2010年6月 (1)
2010年4月 (2)
2010年1月 (1)
2009年11月 (1)
2009年10月 (6)
2009年9月 (3)
2009年8月 (2)
2009年5月 (1)
2008年10月 (2)
2008年9月 (2)
2008年7月 (2)
2008年6月 (1)
2008年3月 (1)
2008年2月 (1)
2008年1月 (1)
2007年12月 (5)
2007年11月 (4)
2007年10月 (2)
2007年9月 (2)
2007年7月 (1)
2007年6月 (2)
2007年4月 (2)
2007年1月 (1)
2006年12月 (1)
2006年11月 (2)
2006年8月 (1)
2006年7月 (1)
2006年5月 (2)
2006年4月 (1)
2006年2月 (1)
2006年1月 (1)
2005年12月 (10)
相册
PhotoShop Study For HuangHuaXiang
我的相册
收藏夹
.NET(1)
(rss)
其他类别
(rss)
搜索
最新评论
1. re: JQUERY的表单异步提交[未登录]
1111111
--111
2. re: JQUERY的表单异步提交
eqedqedasd
--123
3. re: 委托和匿名函数
评论内容较长,点击标题查看
--bracelet shopping
4. re: 递归查询
您好!你的在我这里怎么执行不了啊!
--小陈
5. re: JS操作Xml的相关方法[未登录]
不能保丰到服务器上?
--11
阅读排行榜
1. 窦房折返性心动过速(928)
2. ∷∷∷∷男人感悟一百条∷∷∷∷(710)
3. 人生致命的八个经典问题(657)
4. 秋天不回来(570)
5. 圣诞(467)
评论排行榜
1. 圣诞(0)
2. 人生致命的八个经典问题(0)
3. ∷∷∷∷男人感悟一百条∷∷∷∷(0)
4. 窦房折返性心动过速(0)
5. 秋天不回来(0)
JS 访问 WebServices
1
<%
@ Page Language
=
"
C#
"
AutoEventWireup
=
"
true
"
Codebehind
=
"
Default.aspx.cs
"
Inherits
=
"
JsWebService._Default
"
%>
2
3
<%
@ Register Assembly
=
"
System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
"
4
Namespace
=
"
System.Web.UI
"
TagPrefix
=
"
asp
"
%>
5
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
6
<
html
xmlns
="http://www.w3.org/1999/xhtml"
>
7
<
head
runat
="server"
>
8
<
title
>
JS访问Web Services示例
</
title
>
9
</
head
>
10
<
body
>
11
<
form
id
="form1"
runat
="server"
>
12
1.添加 System.Web.Extensions 引用。
13
<
br
/>
14
<
br
/>
15
2.Config 文件配置,在 system.web 节点下添加
<httpHandlers>
<remove
verb="*" path="*.asmx"/
>
<add
verb="*"
16
path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory,
17
System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/
>
18
<add
verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler,
19
System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
20
validate="false"/
>
<
/httpHandlers
>
21
<
br
/>
22
<
br
/>
23
3. 添加 Web Services 文件,在类名前加上定制特性 [ScriptService]。
24
<
br
/>
25
<
br
/>
26
4. 在 Web 页面添加
<
%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
27
Namespace="System.Web.UI" TagPrefix="asp" %
>
。
28
5. 在 Web 页面添加
<asp
:ScriptManager ID="ScriptManager2" runat="server"
>
29
<Services>
30
<asp
:ServiceReference Path="MyServices.asmx" InlineScript="true"
><
/asp:ServiceReference
>
31
<
/Services
>
32
<
/asp:ScriptManager
>
33
<
br
/>
34
<
br
/>
35
6. JS 调用方法为 命名空间.类名.方法名(参数1,参数2
,回调方法)。
36
<
br
/>
37
<
br
/>
38
7. 如果显示错误为需要添加 ScriptService 或者 命名空间未定义,则检查 [ScriptService] 是否添加上,或者是否是 System.Web.Extensions.ScriptService 的正确引用。
39
<
br
/>
40
<
br
/>
41
42
43
<
asp:ScriptManager
ID
="ScriptManager1"
runat
="server"
>
44
<
Services
>
45
<
asp:ServiceReference
Path
="MyServices.asmx"
InlineScript
="true"
></
asp:ServiceReference
>
46
</
Services
>
47
</
asp:ScriptManager
>
48
<
div
>
49
<
input
type
="button"
id
="btHello"
value
="Hello"
onclick
="hello();"
/><
br
/>
50
<
input
type
="text"
id
="txtA"
value
=""
/>
+
51
<
input
type
="text"
id
="txtB"
value
=""
/>
=
52
<
input
type
="text"
id
="txtSum"
value
=""
/>
53
<
input
type
="button"
id
="btSum"
value
="求和"
onclick
="getSum();"
/><
br
/>
54
</
div
>
55
</
form
>
56
57
<
script
language
="javascript"
>
58
function
backMethod(obj)
59
{
60
document.getElementById(
"
txtSum
"
).value
=
obj;
61
}
62
63
function
hello()
64
{
65
JsWebService.MyServices.HelloWorld(backMethod);
66
}
67
68
function
getSum()
69
{
70
var
a,b;
71
a
=
document.getElementById(
"
txtA
"
).value;
72
b
=
document.getElementById(
"
txtB
"
).value;
73
JsWebService.MyServices.GetSum(a,b,backMethod);
74
}
75
</
script
>
76
77
</
body
>
78
</
html
>
79
posted on 2008-09-09 15:11
白开心
阅读(390)
评论(0)
编辑
收藏
引用
所属分类:
JavaScript
只有注册用户
登录
后才能发表评论。
Powered by:
IT博客
Copyright © 白开心