Introduction to ASP and ADO
ASP (Active Server Pages) is a server-side script execution environment that allows users to generate and execute dynamic, interactive, high-performance Web server applications. When the script is executed on the server side rather than on the client side, the Web server will complete all the work of generating the HTML (Hypertext Markup Language) page sent to the browser.
ADO (ActiveX Data Object, ActiveX Data Object) is an ActiveX Server Component built into ASP. It is used for database access. It can be combined with ASP to create web page content that provides database information and query the database. , insert, update, delete and other operations.
Expand