I would like to use the counter in global.asax, so I can do a distribution on my site every xxx visits. The question is, can my page be served from the ASP.NET cache, will the counter be updated?
Thanks in advance
Application_OnStart This event fires only once when the application starts. To execute the counter, you must use the Session_Start event. In this case, the increment counter.
Application_OnStart
Session_Start
Source: https://habr.com/ru/post/888526/More articles:Comparing LDAP Attributes - comparisonCaptcha control does not work with URL routing (ASP.NET 4.0 WebForms) - c #how to convert byte array to integer array - javaPython super () - should work, but no? - pythonListView item in winform - c #File Usage: /// android_res / drawable / url works under eclipse, but not in production - androidSQL CE Deploy - AppHarbor - Unable to load SQL Server Compact native components - sql-server-cedidSelectRowAtIndexPath selecting multiple rows at a time - iosStrange behavior with response_with syntax for a Rails 3 application? - ruby | fooobar.comUITableView check marks - iphoneAll Articles