private void populateGoalData() { if (Request.QueryString["id"] != null) { Goals gi = new Goals(Request.QueryString["id"].ToString()); //Populate Goal Info divGoalInfo.InnerHtml = gi.populateGoalText(); //Populate Comments populateCommentsTable(); //Populate Pictures populatePicturesTable(); } else { divComments.InnerHtml = "Error"; divGoalInfo.InnerHtml = "Error"; divPictures.InnerHtml = "Error"; } }