示例#1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (Request.QueryString["theExamId"] != null)
     {
         string theExamId = Request.QueryString["theExamId"].ToString();
         theExam = db.TheExam.First(t => t.TheExamId == decimal.Parse(theExamId));
         exams   = examBll.GetExamByTheExamId(Request.QueryString["theExamId"]);
     }
 }