ChrisRChamberlain
Programmer
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 = "Hello world!"
%>
<%=FirstVar%>
</body>
</html>
Assuming the above code to be saved as test.asp, how do you view it through the browser?
Chris
<%@ Language=VBScript %>
<html>
<head>
<title>Example 1</title>
</head>
<body>
<%
FirstVar = "Hello world!"
%>
<%=FirstVar%>
</body>
</html>
Assuming the above code to be saved as test.asp, how do you view it through the browser?
Chris