예제 #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         lblMsg.Text = "";
         this.EntryMode(false);
         this.OpenRecord();
         this.CreateTable();
         this.CreateTableLevel();
         Common.FillDropDownList(objTrMgr.SelectTrainingList("0"), ddlTrainingName, "TrainName", "TrainId", true);
         Common.FillDropDownList(objTrMgr.SelectTrainingVenue("A"), ddlVenue, "VenueName", "VenueId", true);
         Common.FillDropDownList(objEmp.GetEmpDesignation("A"), ddlParticipantLevel, "DesigName", "DesigId", true);
         Common.FillDropDownList(objSOFMgr.SelectProjectList(0), ddlFundedby, "ProjectName", "ProjectId", true);
     }
 }