chrisparr21681
Programmer
I have IIS running and am trying just a simple example from an asp.net book, but i cant get it to work, IE doesnt seem to do the asp.net commands. the code i am trying is....
<%@Page Language="VB" Debug="True" %>
<html>
<head>
<title>Hello and Welcome Page</title>
</head>
<body>
<center>
<% Dim TextSize As Integer %>
<% For TextSize = 1 To 7 %>
<font size = <%=TextSize%>>
Hello and Welcome!<br>
</font>
<% Next %>
</center>
</body>
</html>
its saved in my C:\Inetpub\ folder and is supposed to output the Hello and welcome!!! in ever increasing size until font size 7, but all it outputs is this...
> Hello and Welcome!
<%@Page Language="VB" Debug="True" %>
<html>
<head>
<title>Hello and Welcome Page</title>
</head>
<body>
<center>
<% Dim TextSize As Integer %>
<% For TextSize = 1 To 7 %>
<font size = <%=TextSize%>>
Hello and Welcome!<br>
</font>
<% Next %>
</center>
</body>
</html>
its saved in my C:\Inetpub\ folder and is supposed to output the Hello and welcome!!! in ever increasing size until font size 7, but all it outputs is this...
> Hello and Welcome!