예제 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            utils.DbUtils db  = new utils.DbUtils();
            string        res = db.selectPopular();
            string        p   = "<p>" + res + "</p>";

            confP.Controls.Clear();
            confP.Controls.Add(new Literal {
                Text = p.ToString()
            });
        }