TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
khanhkv2002
NA
8
0
how to manage user session?
Feb 24 2004 5:13 AM
dear all I have a webservice which contains 2 methods: [WebMethod(EnableSession=true)] public void Login(string usercode, string password) { Session["usercode"] = usercode; Session["password"] = password; } [WebMethod(EnableSession=true)] public string CheckUserInfo() { return Session["usercode"] ; } Why does method CheckUserInfo() return NULL? FYI: I call Login() firstly from Windows App, CheckUserInfo() only aims to get info of user who logined already. Thank you too much, Best Regards, Khanh
Reply
Answers (
0
)
Tutorial / Reference for Web Services?
How to return object from a web service.