protected void Page_Load(object sender, EventArgs e) { //This code is here from a merge conflict and I'm not sure if it has a place, is this a redirect to login if the session expires? if so Uncomment it -Saxon UserBL session = (UserBL)Session["user"]; if (session == null) { Response.Redirect("SessionTimeout.aspx"); } //This query is currently what is used to determine what user's information will be displayed on the page it might be better to use userSession I don't know at the moment -Saxon user = Request.QueryString["user"]; //Get the mode from the other page and index of which event needs to be deleted mode = Request.QueryString["mode"]; //this should be deleted eventually eventDelete = Convert.ToInt32(Request.QueryString["eventToDelete"]); eventToDelete = Request.QueryString["eventToDelete"]; //I don't think i need this //User userSession = (User)Session["user"]; //Checks to see if the delete button was clicked if (mode != null) { if (mode.Equals("toggleDelete")) { eventInfo.DeactivateEvent(eventToDelete); } } //Convert data access events to native events once I get the user login sorted I'll come back to this and change the parameter to the user variable- Saxon eventList = eventInfo.GetActiveEvents(user); }