|
The code for the ASP in the BODY section of the welcome.asp page is below.
The code line for the date and time is supposed to be all on one line until you read the <br> tag. This code has two FOR NEXT loops to display the text "Welcome,Hello!" in decreasing, then in increasing sizes. The first loop has blue text. The second loop has purple text. The code after the two loops displays the day of the week, the date, and the time. (NOTE: This is the date and the time at the location of the Web server, and not the date and time at your own computer on the client-side.)
See the actual page (what is returned to the browser):
welcome.asp then view source to see that the ASP tags have been "stripped away", so to speak, by the scripting engine, before delivering the resulting HTML document to the browser.
|