示例#1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     Page.Title = "Add New School";
     if (!Page.IsPostBack)
     {
         DropDownManager.GetLGA(ddlLGA, "ED");
         DropDownManager.GetCategory(ddlSchoolCat);
         DropDownManager.GetTitle(ddlTitle);
         ddlLGA.SelectedValue = SessionUser.LgaId.ToString();
     }
 }