ASP Code
ASP OBJECTS
- Request Object - a request a user makes from an input form - supplies you with information from youvr visitor's browser
- Response Object - server response back to the browser - returns information to you visitor's browser
- Server Object - deals with the creation of server components and server settings
- Application object
- Session Object - keeps track of who the visitor is.
- ObjectContext object
- ASPError
Definitions
- RS = Recordset
- BOF = Begining of File (in database)
- EOF = End of File (in database)
- ActiveX Data Object - ADO
- <% = this the start of ASP code
- %> = this is the end of ASP code
- to write in a text box from a database = <%=RS("Zip")%>
- To create a form for collecting information to send to the server use = <form>......</form>
- to write information from the server database or another page = Response.Write "......"
- Data is passed from
- a form
- a query string
- a session