


Be careful about the pitfalls when publishing an ASP.NET website. Why does every page freeze when you first open it after the website is published? How to solve the frequent loss of ASP.NET sessions? It has certain reference value. Interested friends can refer to
Development tools: VS2010, MVC4.0, SQLSERVER2008
Server: Windows server 2012, IIS8, SQLSERVER2012
1. After publishing, each page is stuck for 50 seconds or more when it is opened for the first time. However, it is very fast the second time it is opened.
Estimated reason: slow compilation speed , but publishing on a machine with a VS environment is not so stuck.
Solution:
Use a higher version of VS, "precompile during release"; use the Application Initialization function of IIS8 1. Using VS2017 "Precompile during release"
I encountered an error when publishing:
It is an error to use a section registered with allowDefinition='MachineToApplication' outside the application level. This error can be caused if the virtual directory is not configured as an application in IIS.
Solution: Comment the following code in web.config when publishing
<!--<authentication mode="Forms"> <forms loginUrl="~/Account/Login" timeout="2880" /> </authentication>-->
2. Use Application Initialization function of IIS8
Solution to slow first access to ASP.NET website
2. ASP.NET session frequent loss problem
Symptom: The session is lost about 30 seconds after logging in, and you need to log in again.
Solution: ASP.NET has several session state modes. The default is "InProc mode". Change it to "StateServer mode" and the problem will be solved.
1. off mode
means closing the Session.
To close the session for the whole site, you can write in the
To close the Session on a page, you can add on the page:
2. InProc mode (default mode)
If SessionState Mode is not configured in the Web.config file, the default is InProc mode.
If you want to customize the parameters of InProc mode, you need to write the Web.config file, for example:
cookieless sets whether to allow cookies not to be used, and timeout sets the timeout in minutes.
InProc mode relies on the ASP.NET process. When the IIS process crashes or is restarted, the session state saved in the process will be lost.
3. StateServer mode
StateServer mode stores session data in a separate memory buffer, which is driven by a Windows service "ASP. NET State Service" (needs to be turned on in the windows service) to control this buffer, you need to set stateConnectionString:
When using the StateServer mode, all classes that need to be saved in the Session must be serializable:
[Serializable]
public class SomeClass { }
The advantage of the StateServer mode is that it is independent of the IIS process, and the restart of the IIS application does not affect the session data.
4. SQLServer mode
Use SQL Server to save the Session. Even if IIS is restarted, the Session will not be lost. You need to create the ASPState database first. Specific methods can be found online.
The above is the entire content of this article. I hope it will be helpful to everyone’s study. I also hope that everyone will support Script House.
The above is the detailed content of Share the problems and solutions encountered when publishing two ASP.NET websites. For more information, please follow other related articles on the PHP Chinese website!

This article explores the challenges of NULL pointer dereferences in C. It argues that the problem isn't NULL itself, but its misuse. The article details best practices for preventing dereferences, including pre-dereference checks, pointer initiali

This article guides beginners on choosing a C compiler. It argues that GCC, due to its ease of use, wide availability, and extensive resources, is best for beginners. However, it also compares GCC, Clang, MSVC, and TCC, highlighting their differenc

This article explains how to create newline characters in C using the \n escape sequence within printf and puts functions. It details the functionality and provides code examples demonstrating its use for line breaks in output.

This article emphasizes the continued importance of NULL in modern C programming. Despite advancements, NULL remains crucial for explicit pointer management, preventing segmentation faults by marking the absence of a valid memory address. Best prac

This article reviews online C compilers for beginners, focusing on ease of use and debugging capabilities. OnlineGDB and Repl.it are highlighted for their user-friendly interfaces and helpful debugging tools. Other options like Programiz and Compil

This article compares online C programming platforms, highlighting differences in features like debugging tools, IDE functionality, standard compliance, and memory/execution limits. It argues that the "best" platform depends on user needs,

This article discusses efficient code copying in C IDEs. It emphasizes that copying is an IDE function, not a compiler feature, and details strategies for improved efficiency, including using IDE selection tools, code folding, search/replace, templa

This article troubleshoots missing output windows in C program compilation. It examines causes like failing to run the executable, program errors, incorrect compiler settings, background processes, and rapid program termination. Solutions involve ch


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version
Recommended: Win version, supports code prompts!

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Chinese version
Chinese version, very easy to use
