I'm a traditional ASP developer and am experimenting with asp.net. I
installed .NET Framework 1.1 and make a quick and dirty test page called
random.aspx . Can anyone tell me why this page doesn't write the value of
"X" to the page AND why I can view the <% %> source code in the browser? It
makes me think that my IIS doesn't recognize .aspx files.
Thanks
<% @dotnet.itags.org.Page Language = "VB" Debug = "True" Explicit = "True" %>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
Random Single Number Test: <strong>(
<%
Dim X As Single
Randomize
X = Rnd
Response.Write X
%>)</strong>
</body>
</html
--
*********************************
D. Shane Fowlkes - TMM
Saving the world, one web site at a time.
Work: http://www.premierewebs.com
Play: http://www.raccoonbob.com
*********************************From the .Net installation directory under your Windows (or e1quivalent)
directory, run the following command-line tool to install ASP.Net on your
web server:
aspnet_regiis.exe -i
--
HTH,
Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.
"D. Shane Fowlkes" <shane@.raccoonbob.com> wrote in message
news:e4n0APIpDHA.2140@.TK2MSFTNGP09.phx.gbl...
> I'm a traditional ASP developer and am experimenting with asp.net. I
> installed .NET Framework 1.1 and make a quick and dirty test page called
> random.aspx . Can anyone tell me why this page doesn't write the value of
> "X" to the page AND why I can view the <% %> source code in the browser?
It
> makes me think that my IIS doesn't recognize .aspx files.
>
> Thanks
> <% @.Page Language = "VB" Debug = "True" Explicit = "True" %>
> <html>
> <head>
> <title>Untitled Document</title>
> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
> </head>
> <body>
> Random Single Number Test: <strong>(
> <%
> Dim X As Single
> Randomize
> X = Rnd
> Response.Write X
> %>)</strong>
> </body>
> </html>
>
> --
>
> *********************************
> D. Shane Fowlkes - TMM
> Saving the world, one web site at a time.
> Work: http://www.premierewebs.com
> Play: http://www.raccoonbob.com
> *********************************
Thanks Kevin! That did it...
--
*********************************
D. Shane Fowlkes - TMM
Saving the world, one web site at a time.
*********************************
"Kevin Spencer" <kevin@.DIESPAMMERSDIEtakempis.com> wrote in message
news:%23WbfV4IpDHA.488@.tk2msftngp13.phx.gbl...
> From the .Net installation directory under your Windows (or e1quivalent)
> directory, run the following command-line tool to install ASP.Net on your
> web server:
> aspnet_regiis.exe -i
> --
> HTH,
> Kevin Spencer
> Microsoft MVP
> .Net Developer
> http://www.takempis.com
> Big Things are made up of
> Lots of Little Things.
> "D. Shane Fowlkes" <shane@.raccoonbob.com> wrote in message
> news:e4n0APIpDHA.2140@.TK2MSFTNGP09.phx.gbl...
> > I'm a traditional ASP developer and am experimenting with asp.net. I
> > installed .NET Framework 1.1 and make a quick and dirty test page called
> > random.aspx . Can anyone tell me why this page doesn't write the value
of
> > "X" to the page AND why I can view the <% %> source code in the browser?
> It
> > makes me think that my IIS doesn't recognize .aspx files.
> > Thanks
> > <% @.Page Language = "VB" Debug = "True" Explicit = "True" %>
> > <html>
> > <head>
> > <title>Untitled Document</title>
> > <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
> > </head>
> > <body>
> > Random Single Number Test: <strong>(
> > <%
> > Dim X As Single
> > Randomize
> > X = Rnd
> > Response.Write X
> > %>)</strong>
> > </body>
> > </html>
> > --
> > *********************************
> > D. Shane Fowlkes - TMM
> > Saving the world, one web site at a time.
> > Work: http://www.premierewebs.com
> > Play: http://www.raccoonbob.com
> > *********************************
Thursday, March 22, 2012
Taking the plunge - first .net question
Labels:
asp,
dirty,
experimenting,
framework,
iinstalled,
net,
page,
plunge,
traditional
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment