Pseudocode: InsertEducationDetails int year; int currentYear=2013; string employee="0"; string level="0"; string class="0"; string degree=""; string schoolOrCollage=""; string boarOrUniversity=""; decimal percentage; if employee isn't select then WebMsgBox "Employee isn't Selected" else ShowGridViewEducationDetail if btnSubmit is Click then if level isn't select then WebMsgBox "Level isn't Selected" if degree or schoolOrCollage or boarOrUniversity or percentage is null then WebMsgBox "[field] can't NULL" if year <1900 and year > currentYear then WebMsgBox "Year of Qualification is greater than CurrentYear" if percentage isn't number then WebMsgBox "Percentage must be numeric" Pseudocode: InsertTrainingDetails int year; int currentYear=2013; string employee="0"; string typeOfTraining="0"; string faculty=""; int cost; int duration; if employee isn't select then WebMsgBox "Employee isn't Selected" else ShowGridViewEducationDetail if btnSubmit is Click then if typeOfTraining isn't select then WebMsgBox "Type Of Training isn't Selected" if faculty is null then WebMsgBox "[field] can't NULL" if year <1900 and year > currentYear then WebMsgBox "Year of Qualification is greater than CurrentYear" if duration isn't number then WebMsgBox "Duration must be numeric"