html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<title>ASP</title>
</head>
<body bgcolor="black" text="white">
<%
'Dimensions variable
Dim strMessage
'Place the value Hello World into the variable
strMessage ='Hello World'
'Write the contents of the variable strMessage to the web page
Response.Write(strMessage)
'Write the server time on the web page using the VBScript Time() function
Response.Write('The time on the server is:' & Time())
'Close the server script
%>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run