I found that if many Asp systems do not generate static when calling articles, the outputs are similar.
http://www.xxx.com/show.asp?id=26 in this format.
If you can change to the format http://www.xxx.com/show/?26, it feels like it has been cleared a lot. Of course, for spaces that support pseudo-static
It can also be set to http://www.xxx.com/show/26. It is said that Yang can increase the chance of search engines inclusion.
The code is as follows:
First, create a show directory and an index.asp file, which is the default file of the system.
Then, if it was show.asp?id=26, the show file first needs to get id.
id=request.QueryString("id")
For example, get id. Here, change the get id with, get? The following number is used.
id=LCase(Trim(Request.ServerVariables("QUERY_STRING")))
Other methods of linking databases remain unchanged
Setrs=Server.CreateObject("ADODB.Recordset")
rs.Open"Select*Fromblogwhereid="&id,conn,3,3
You can try it, haha.
Give a demonstration:
http://www.aubaby.cn/shop/?26