In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
ASP.NET Web application user operation information description class refers to what, in view of this problem, this article describes the corresponding analysis and solution in detail, hoping to help more want to solve this problem of small partners to find a simpler and easier way.
If we want to represent user action information in ASP.NET web applications, we must have some functional identification. The following interface describes user action information in five layers:
1. Username: Directly identifies operator username
2. User IP address: The IP address identifies the physical machine on which the operator is located at the time of the operation.
3. User SessionId: Used to identify the session information used by the user browser, with thread *** nature
4. User operation screen ID: identifies the page operated by the user
5. User Action Event ID: identifies the event that the user took action on (server-side control ID)
ASP.NET Web Application Sample Code:
Public Interface IOperatable Property UserName() As String Property IPAddress() As String Property SessionId() As String Property ScreenId() As String Property EventId() As String End Interface
For a server-side control event, *** HTTP requests are sent to the server side, and *** threads are opened to process this request. That is to say, user operation information should have thread *** property, so define thread static variable Current to save user operation information of current thread, so that user operation information can be obtained in the form of "OperationInfo.Current" after one assignment, without passing user operation information between methods at various levels.
ASP.NET Web Application Sample Code:
Imports RichardTsuei.Core Public Class OperationInfo Implements IOperatable
< ThreadStatic()>_ Private Shared _Current As IOperatable Public Property Current() As IOperatable Get Return _Current End Get Set(ByVal value As IOperatable) _Current = value End Set End Property Private _UserName As String Public Property UserName() As String Implements Core.IOperatable.UserName Get Return _UserName End Get Set(ByVal value As String) _UserName = value End Set End Property Private _IPAddress As String Public Property IPAddress() As String Implements Core.IOperatable.IPAddress Get Return _IPAddress End Get Set(ByVal value As String) _IPAddress = value End Set End Property Private _SessionId As String Public Property SessionId() As String Implements Core.IOperatable.SessionId Get Return _SessionId End Get Set(ByVal value As String) _SessionId = value End Set End Property Private _ScreenId As String Public Property ScreenId() As String Implements Core.IOperatable.ScreenId Get Return _ScreenId End Get Set(ByVal value As String) _ScreenId = value End Set End Property Private _EventId As String Public Property EventId() As String Implements Core.IOperatable.EventId Get Return _EventId End Get Set(ByVal value As String) _EventId = value End Set End Property End Class About ASP.NET Web application user operation information description class refers to what the answer to the problem is shared here, I hope the above content can be of some help to everyone, if you still have a lot of doubts not solved, you can pay attention to the industry information channel to learn more related knowledge.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.