Пример #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            Dictionary <BookStatModel, int> books = BookStatBLL.GetTopSellingBooks(10);
            int rank = 1;

            foreach (KeyValuePair <BookStatModel, int> book in books)
            {
                TopListElement control = (TopListElement)LoadControl("~/Controls/Element/TopListElement.ascx");
                Panel1.Controls.Add(control);
                control.SetParent(Panel1.ClientID);
                control.SetBook(book.Key, rank, book.Value);
                rank++;
            }
        }