コード例 #1
0
ファイル: indexAfter.aspx.cs プロジェクト: danalrds/WP
        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()
            });
        }