Recommended: Detailed explanation of ASP built-in objects Request and Response Request and Response are the two most commonly used built-in objects provided by ASP. The exchange of information occurring in the request and response between the browser (or other user agent) and the web server can be accessed and managed through two built-in objects in the ASP.
A friend who studied ASP. . Share something good to everyone
Really admired...
Do you think it is difficult to build a forum when you see various ASP forums online? In fact, we can complete our own forum by using simple ASP statements. Next, I will teach you how to use ASP to create your own forum. After all, will your own things be pleasant to use?
At the same time, even the most complex writing of the forum is inseparable from the following basic steps. Everyone will take a closer look.
1. Create a document!
The simplest forum also needs several necessary documents, namely:
1. Database, used to store posts! ---------Name as: bbs.mdb
2. If there is a database, you must connect to the database. This file is used to connect to the database: ----named: conn.asp
3. The file for posting---named: say.asp
4. Save the file for posting content-----named as: save.asp
5. The file that displays the post title------named as: index.asp
6. The file that displays the content of the post, that is, the page you enter after clicking the title-----named: show.asp
To create a file, you can first create a text document. Its format is file name.txt, we just need to change it to file name.asp
2. The main contents of each document
1. bbs.mdb
Open this database, create a table, and name it bbs
Share: ASP tips: Improve the efficiency of using Request collections Accessing an ASP collection to extract a value is a time-consuming and computing resource consuming process. Because this operation contains a series of searches for related sets, this is much slower than accessing a local variable. So if you intend to use a value from the Request collection multiple times in the page
2 pages in total Previous page 12 Next page