All articles(网络文学目录) All Pictures(图片目录) All Softwares(软件目录)

 
Webservice中使用Session、Application_[Asp.Net教程]

Writer: delv Article type: Programming skills(编程技巧) Time: 2014/1/16 9:30:27 Browse times: 383 Comment times: 0

Webservice中使用Session、Application_[Asp.Net教程]


Head photo

Go homepage
Upload pictures
Write articles

Webservice中使用Session、Application_[Asp.Net教程]

在Asp.Net 2.0里,已经能够在WebMethod里使用 Session 、 Application 这种服务器变量了。

一、Session [WebMethod(EnableSession = true)]
public string Hello()
{
return "Hello," + Session["user"];
}

[WebMethod(EnableSession = false)]
public string Hello1()
{
return "Hello," + Session["user"];
}

[WebMethod]
public string Hello2()
{
return "Hello," + Session["user"];
}
“EnableSession” 为 XML Web services 方法启用会话状态,启用为 true。默认状态为 false。

以上三种方式均能实现对Session变量的使用。但要注意:
如果状态设置为 true,则客户端访问WS时,可以不赋值Session变量,有默认值。
如果状态设置为 false,则客户端访问WS时,必须要先对Session变量赋值,否则报错。

二、Application
[WebMethod]
public string Hello3()
{
return "Hello," + Application["user"];
}
使用Application时,不需要设置方法标签


http://www.cnblogs.com/heekui/archive/2007/01/10/616513.html





There are 0 records,
Comment:
Must be registered users to comment(必须是注册用户才能发表评论)

Disclaimer Privacy Policy About us Site Map
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.