代码:
webform1.aspx
--------------------------------------------------------------------
<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="MyWebApp1.WebForm1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>WebForm1</title>
</HEAD>
<body>
<form id="Form1" method="post" runat="server">
<P>This is in the HTML of WebForm1.aspx</P>
<P><asp:Button id="Button1" runat="server" Text="Button" /></P>
</form>
</body>
</HTML>webform1.aspx.cs
----------------------------------------------------------------
....
public class WebForm1 : System.Web.UI.Page
{
  protected System.Web.UI.WebControls.Button Button1;
  private void Page_Load(object sender, System.EventArgs e)
 {
   Response.Write("Page Load Method Called.<br>");

   if (Page.IsPostBack)
   {
     Response.Write("This is the second time you've see this page.<br>");
   }
  }
...
}