Recommended: parse Microsoft ASP.NET built-in security architecture
A security solution built into the .NET Framework is a security solution that is combined with ASP.NET and .NET Framework to provide an infrastructure for web application security. One of its obvious advantages is that we don't have to write our own security architecture anymore. We can take advantage of the built-in features of the .NET security architecture, and the entire security architecture is tested and time-consuming.
When running ASP, I encountered a script timeout problem, and the prompt message was: Active Server Pages Error 'ASP 0113 Script timeout'.
Solution : Modify two places: First: Open IIS-local computer, click on the website, right-click ---Properties-Home Directory-Configuration-Options--ASP script timeout time, which can be changed to 60-90 seconds or higher; second:
<%
session.abandon
Server.ScriptTimeOut=500
Add these two lines of code at the beginning, and then restart IIS, and it's fine, and it's very fast.
Share: Detailed analysis of thread conflicts during .NET programming
1. What is thread conflict. Thread conflict actually refers to the problem caused by two or more threads operating on the same shared resource at the same time. A classic example is to use a global variable as a counter, and then open N threads to complete a task. Each thread completes a task and adds the counter one until 100 tasks are completed. If not considered