Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hello World

Status
Not open for further replies.

ChrisRChamberlain

Programmer
Mar 23, 2000
3,392
GB
Complete newbie to ASP, so apologies in advance for the naivety of the question.

<%@ Language=VBScript %>
<html>
<head>
<title>Example 1</title>
</head>
<body>
<%
FirstVar = &quot;Hello world!&quot;
%>
<%=FirstVar%>
</body>
</html>

Assuming the above code to be saved as test.asp, how do you view it through the browser?

Chris
 
Just type your server name and the location of test.asp

If you tested it on Win98 machine then you need to have MS Personal Web Server installed.

If your server runs on NT machine then you need to have MS Internet Information Server installed.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top