using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; namespace questionaire { /// /// Summary description for table1. /// public class table1 : System.Web.UI.Page { protected System.Web.UI.WebControls.Button btnTable; // This routine runs when the page loads private void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here } // This routine (w/out the content inside) is automatically // created when you create a button on the design view or // html view of the web form. Inside the routine you need to // do whatever function you want to perform when you click // the button private void btnTable_Click(object sender, System.EventArgs e) { // I Response.Redirect("student.aspx"); } } }