home *** CD-ROM | disk | FTP | other *** search
- <html>
- <%
-
- Set Conn = Server.CreateObject("ADODB.Connection")
-
- Conn.Open "DSN=LocalTraining"
-
- SQL = "Select Course.* From Course Where Course.ID=" & Request.QueryString("ID")
-
- Set RSCourse = Conn.Execute(SQL)
-
- %>
- <head>
- <title><%=RSCourse("Title")%></title>
- </head>
-
- <body bgcolor="#FFFFFF">
-
- <p>
- <font color="#FF0000" size="4" face="Verdana">
- <strong><%=RSCourse("Number")%></strong>
- </font>
- <font color="#000000" size="4" face="Verdana">
- <strong><%=RSCourse("Title")%></strong>
- </font>
- </p>
-
- <p><%=RSCourse("Description")%></p>
-
- <p><strong>Audience:</strong><%=" " & RSCourse("Audience")%></p>
-
- <p><strong>Prerequisites:</strong><%=" " & RSCourse("Prerequisites")%></p>
-
- <p><strong>Duration:</strong><%=" " & RSCourse("Duration")%></p>
-
- <%
- RSCourse.Close
- %>
-
- </body>
- </html>
-