protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         User_Prof.FillCombo(DropDownList5, "Gender");
         User_Prof.FillCombo(DropDownList4, "Country");
     }
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         User_Prof.FillCombo(DropDownList5, "Home_Category");
         User_Prof.FillCombo(DropDownList1, "Profession");
     }
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         User_Prof.FillCombo(DropDownList1, "Video_Category");
         int uid = (int)Session["loginuser"];
         Video.FetchVideos(uid, videos_repeator);
     }
 }