Recommended: iis7 and iis8 configuration backup and restore tutorial Method 1: 1. Open our IIS Manager, find the shared configuration function in the function view and double-click to enter. 2. After entering the shared configuration, the export configuration option in the upper right of the stand-alone machine is selected, and then set a password. The password must be a strong password containing numbers, symbols, upper case letter combinations and at least 8 characters long. Confirm the export.
Every time I go to Chinaasp, many netizens always ask how to refresh the Asp page. Under the management of IIS4, the problem of not refreshing the page is much more serious than that of IIS5, and sometimes some statements that control page cache still do not work. I'm not very clear about the reason, go and ask Microsoft :-)
Now I will summarize some methods of clearing page cache as follows:
1. Join at the beginning of Asp page
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = no-cache
Response.AddHeader Pragma, No-Cache
2. Add to HTML code
<HEAD>
<META HTTP-EQUIV=Pragma CONTENT=no-cache>
<META HTTP-EQUIV=Cache-Control CONTENT=no-cache>
<META HTTP-EQUIV=Expires CONTENT=0>
</HEAD>
3. When calling the original page again, pass a parameter to the page
Href=****.asp?random()
In fact, after using IIS5, there are naturally much fewer such problems, so now I rarely use such words to force update the page. The above is also some of the experience we have accumulated in the development under IIS4. I hope it can help you!
Share: Introduction to Asp Function 1. Function array() function: Create an array variable format: array(list) Parameter: list is each numeric column in the array variable, with comma intervals in the middle Example: % i = array (1,2,3) % Result: i is assigned as an array 2. Function Cint() function: Convert an expression/other type of variable into an integer type (int) Format: Cint(expression) Parameter:express