protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         string ID = Request.QueryString["id"].ToString();
         StudentDal objStudentDal = new StudentDal();
         dynamic value = objStudentDal.getStudentInfo(ID);
         txtbxStudentName.Text = value.studentName;
         DropDownListGender.Text = value.gender;
         txtbxFatherName.Text = value.fatherName;
         txtbxaddress.Text = value.address;
         txtbxAdmissionYar.Text = value.addmissionYar;
         txtbxStudentClass.Text = value.studentClass;
         txtbxSection.Text = value.section;
         txtbxRoll.Text = value.roll;
         txtbxGuardianName.Text = value.guardianName;
         txtbxPhoneNo.Text = value.phoneNo;
         txtbxMotherName.Text = value.motherName;
         txtbxID.Text = ID;
     }
 }