Ejemplo n.º 1
0
 private void drpFill()
 {
     drpCatergori.DataSource     = DALCategories.GetAll();
     drpCatergori.DataTextField  = "TITLE";
     drpCatergori.DataValueField = "ID";
     drpCatergori.DataBind();
 }
Ejemplo n.º 2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (RouteData.Values["TITLE"] != null)
     {
         title = RouteData.Values["TITLE"].ToString();
         isQuestion();
     }
     rptrCategories.Bind(DALCategories.GetAll());
     rptLastPost.Bind(DALBlog.GetLastCount(3));
 }
Ejemplo n.º 3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            string title = "";

            if (RouteData.Values["TITLE"] != null)
            {
                title = RouteData.Values["TITLE"].ToString();
                CATEGORIES c = DALCategories.GetTitle(title);
                rptPostTitle.Bind(DALBlog.GetByCategoriesID(c.ID));
            }

            rptrCategories.Bind(DALCategories.GetAll());
            rptLastPost.Bind(DALBlog.GetLastCount(3));
        }
Ejemplo n.º 4
0
 protected void Page_Load(object sender, EventArgs e)
 {
     rptrCategories.Bind(DALCategories.GetAll());
     rptPost.Bind(DALBlog.GetLastCount(1));
     rptLastPost.Bind(DALBlog.GetLastCount(3));
 }
Ejemplo n.º 5
0
 protected void Page_Load(object sender, EventArgs e)
 {
     rptrCategories.Bind(DALCategories.GetAll());
     rptLastPost.Bind(DALBlog.GetLastCount(3));
     rptQuestion.Bind(DALQUESTION.GetAll2().OrderBy(p => p.SORT));
 }
Ejemplo n.º 6
0
 private void fillCategories()
 {
     rptCountCategories = DALCategories.getCount();
     rptCategories.Bind(DALCategories.GetAll().OrderBy(p => p.SORT));
     lblCountCategories.Text = "(" + rptCountCategories.ToString() + ")";
 }
Ejemplo n.º 7
0
 protected void Page_Load(object sender, EventArgs e)
 {
     this.AsyncMode = true;
     rptrCategories.Bind(DALCategories.GetAll());
     rptLastPost.Bind(DALBlog.GetLastCount(3));
 }
Ejemplo n.º 8
0
 public static List <ECategories> GetAll()
 {
     return(DALCategories.GetAll());
 }