G
Guest
Hello all...
newbie here to .NET, but have dev asp pages for years. I'm trying to setup
my workstation to now show .aspx pages - with no luck.
I have the 1.1 NET framework installed, IIS5 and a simple EditPlus text
editor that I use nicely with asp pages that are served up fine. But a simple
..aspx page like below shows me that the code is NOT being served...
Here's the code for this simple test page....
<%@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!
</font>
<% Next %>
</center>
</body>
</html>
And this is all that it shows --
IE there are NOT 7 phrases that 'grow' in size on the screen. what am I
doing wrong in setting up my .NET environment, or what don't I know?
Jim
newbie here to .NET, but have dev asp pages for years. I'm trying to setup
my workstation to now show .aspx pages - with no luck.
I have the 1.1 NET framework installed, IIS5 and a simple EditPlus text
editor that I use nicely with asp pages that are served up fine. But a simple
..aspx page like below shows me that the code is NOT being served...
Here's the code for this simple test page....
<%@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!
</font>
<% Next %>
</center>
</body>
</html>
And this is all that it shows --
Hello and Welcome!
IE there are NOT 7 phrases that 'grow' in size on the screen. what am I
doing wrong in setting up my .NET environment, or what don't I know?
Jim