Recommended: Solutions to garbled UTF-8 pages under ASP dynamic web pages Why does it often display garbled code in ASP when specifying codepage as 65001? The talented man will explain this issue in detail here so that many friends will avoid taking detours and even rejecting UTF-8. If you don't know what UTF-8 is yet, then Caizi suggests that you search for U first
I'm learning server knowledge recently. Sometimes I encounter an error in which the asp script runs timeout, which is really troublesome. I found relevant information, and there are some solutions.
The default script timeout for IIS is 90 seconds
In this way, if you upload software or transmit data for more than 90 seconds, the process script will time out and abandon your execution, protect the server's processing of large data memory and excessive CPU usage will cause crashes or instability.
The solution is
One: You can click the home directory in the properties of the website where IIS is located and then the ASP/cGI script timeout in the configuration options, and the size is set higher.
Another way is simpler: add it directly at the head of the program.
Server.ScriptTimeOut = 500
/'500 is the timeout time you set for the script, seconds, and you can adjust the specific size by yourself.
Share: Methods of using SQL statements in ASP dynamic web page production 1. SELECT statement In the SQL world, the most basic operation is the SELECT statement. When using SQL directly under the database tool, many people will be familiar with the following operations: The following is the quoted content: