View Single Post
  #1 (permalink)  
Old November 11th, 2004, 11:25 AM
subroger subroger is offline
Registered User
 
Join Date: Nov 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default ASP.NET 1.1 with VB.NET 2003 chapter 1

I tried the code in this book. (see title)
(Still don't know which one? It's written by Chris Ulman, John Kauffman, Chris Hart, David Sussman.
http://www.wrox.com/WileyCDA/WroxTit...load_code.html)

Again I tried the following code:
<script language="VB" runat="server">
Sub Page_Load()
 Response.Write ("First ASP.NET Line<br />")
 Response.Write ("Second ASP.NET Line<br />")
 Response.Write ("Third ASP.NET Line<br />")
End Sub
</script>

<html>
  <head>
    <title>Inserting ASP.NET code Example</title>
  </head>
  <body>
    Line1: First HTML Line<br />
    Line2: Second HTML Line<br />
    Line3: Third HTML Line<br />
  </body>
</html>

only the html line appears on the web page. Why?
I have .NET Framework, ASP.NET, and I use DreamWeaver.

Help fast... My boss is waiting...

Roger



Reply With Quote