using System; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class teachers_zone_repeated : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { lblerr_1.Text = ""; lblerr_2.Text = ""; String a = ""; a = Request.QueryString["errId"]; switch (a) { case "1": lblerr_1.Text = "You have already requested for this school year."; lblerr_2.Text = ""; break; case "2": lblerr_1.Text = "This already contains the school named."; lblerr_2.Text = "Please go back to change the school name."; break; case "3": lblerr_1.Text = "You have already requested twice for this school year."; lblerr_2.Text = ""; break; } } }