本文介绍了列出访问该页面的人员的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道是否可以列出访问网站某个页面的所有用户?
预先感谢所有人。
Neoral
Hi,
I would just like to know if it''s possible to list all users who accesses a certain page on a website?
Advance thanks to all.
Neoral
推荐答案
if (Session["useremail"] != null)
{
//code to save user information
}
else
{
// redirect to login page
}
这里是会话[useremail]存储登录的用户详细信息。因此,如果此会话存在,请保存用户信息,如emailid,注册号等以及页面名称(保存在数据库或XML文件等中)。您将获得访问特定页面的用户列表。
....
Here Session["useremail"] stores logged in user details. So if this session exists save the user information like emailid, registration no etc along with page name ( save in database or XML file etc. ). You you will get list of users accessing particular pages.
....
这篇关于列出访问该页面的人员的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!