如何确定用户在一个ASP

如何确定用户在一个ASP

本文介绍了如何确定用户在一个ASP.NET站点(IIS)的数量?而他们的信息?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有一种方法,以确定在ASP.NET应用程序的活动会话的用户数量?我有一个特定的应用程序的管理员/工具页面,我想显示有关所有打开的会话,例如会话的每个用户的数量,也许请求机器的地址或其他凭证信息资讯。

Is there a way to determine the number of users that have active sessions in an ASP.NET application? I have an admin/tools page in a particular application, and I would like to display info regarding all open sessions, such as the number of sessions, and perhaps the requesting machines' addresses, or other credential information for each user.

推荐答案

..

ASP.NET Performance Counters like State Server Sessions Active (The number of active user sessions) should help you out. Then you can just read and display the performance counters from your admin page..

这篇关于如何确定用户在一个ASP.NET站点(IIS)的数量?而他们的信息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 21:45