protected void BtnCollegeInfoSave_Click(object sender, EventArgs e)
 {
     ENTITY.CollegeInfo collegeInfo = new ENTITY.CollegeInfo();
     collegeInfo.collegeNumber    = this.collegeNumber.Value;
     collegeInfo.collegeName      = collegeName.Value;
     collegeInfo.collegeBirthDate = Convert.ToDateTime(collegeBirthDate.Text);
     collegeInfo.collegeMan       = collegeMan.Value;
     collegeInfo.collegeTelephone = collegeTelephone.Value;
     collegeInfo.collegeMemo      = collegeMemo.Value;
     if (!string.IsNullOrEmpty(Common.GetMes.GetRequestQuery(Request, "collegeNumber")))
     {
         collegeInfo.collegeNumber = Request["collegeNumber"];
         if (BLL.bllCollegeInfo.EditCollegeInfo(collegeInfo))
         {
             Common.ShowMessage.myScriptMes(Page, "Suess", "if(confirm(\"信息修改成功,是否继续修改?否则返回信息列表。\")) {location.href=\"M_EditCollegeInfo.aspx?collegeNumber=" + Request["collegeNumber"] + "\"} else  {location.href=\"M_CollegeInfoList.aspx\"} ");
         }
         else
         {
             Common.ShowMessage.Show(Page, "error", "信息修改失败,请重试或联系管理人员..");
         }
     }
     else
     {
         if (BLL.bllCollegeInfo.AddCollegeInfo(collegeInfo))
         {
             Common.ShowMessage.myScriptMes(Page, "Suess", "if(confirm(\"信息添加成功,是否继续添加?否则返回信息列表。\")) {location.href=\"M_EditCollegeInfo.aspx\"} else  {location.href=\"M_CollegeInfoList.aspx\"} ");
         }
         else
         {
             Common.ShowMessage.Show(Page, "error", "信息添加失败,请重试或联系管理人员..");
         }
     }
 }
 /*如果是需要对记录进行编辑需要在界面初始化显示数据*/
 private void LoadData()
 {
     if (!string.IsNullOrEmpty(Common.GetMes.GetRequestQuery(Request, "collegeNumber")))
     {
         ENTITY.CollegeInfo collegeInfo = BLL.bllCollegeInfo.getSomeCollegeInfo(Common.GetMes.GetRequestQuery(Request, "collegeNumber"));
         collegeNumber.Value    = collegeInfo.collegeNumber;
         collegeName.Value      = collegeInfo.collegeName;
         collegeBirthDate.Text  = collegeInfo.collegeBirthDate.ToShortDateString();
         collegeMan.Value       = collegeInfo.collegeMan;
         collegeTelephone.Value = collegeInfo.collegeTelephone;
         collegeMemo.Value      = collegeInfo.collegeMemo;
     }
 }
 /*更新学院信息*/
 public static bool EditCollegeInfo(ENTITY.CollegeInfo collegeInfo)
 {
     return(DAL.dalCollegeInfo.EditCollegeInfo(collegeInfo));
 }