I feel this falls into the 'stupid question' category, but the time has come that I must ask it.

I have this code from my vb .net (asp .net) application (created in visual studio .net)
VB Code:
  1. Public Class WebForm1
  2.     Inherits System.Web.UI.Page
  3.  
  4. #Region " Web Form Designer Generated Code "
  5.  
  6.     'This call is required by the Web Form Designer.
  7.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  8.  
  9.     End Sub
  10.  
  11.     Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
  12.         'CODEGEN: This method call is required by the Web Form Designer
  13.         'Do not modify it using the code editor.
  14.         InitializeComponent()
  15.     End Sub
  16.  
  17. #End Region
  18.  
  19.     Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  20.         Response.Write("<table><tr><td>Why does this show up above the html tags</td></tr></table>")
  21.     End Sub
  22.  
  23. End Class



Why does my response.write show get written above every other tag on the page... like this:
[Results]
Code:
<table><tr><td>Why does this show up above the other tags?</td></tr></table>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
	<HEAD>
		<title>WebForm1</title>
		<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
		<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
		<meta name="vs_defaultClientScript" content="JavaScript">
		<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
	</HEAD>
	<body MS_POSITIONING="GridLayout">
		<form name="Form1" method="post" action="WebForm1.aspx" id="Form1">
<input type="hidden" name="__VIEWSTATE" value="dDwtMTI3OTMzNDM4NDs7PuIeAj03w2/SZE+efTMFhqIXJ3Ap" />

		</form>
	</body>
</HTML>

How do I make the stuff from my response.write get written inside of the <body> tags on the resulting page????

My guess is that I need to stick some 'runat=server' stuff somewhere, but I don't know where.

thanks!