protected void CreateSubmission_Submit(object sender, EventArgs e)
        {
            SubmissionManagementBO bo = new SubmissionManagementBO();

            try {
                if (createSubmissionTitle.Text.Equals(""))
                {
                    throw new Exception("You must enter a title");
                }
                if (createSubmissionLink.Text.Equals(""))
                {
                    throw new Exception("You must enter a link");
                }
                bo.CreateNewSubmission(createSubmissionTitle.Text, createSubmissionLink.Text, Session["login"].ToString());
                Response.Redirect(WebConstants.HOME_PAGE + "?sort=new");
            }
            catch (Exception exc) {
                submissionError.Text = exc.Message;
            }
        }