Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         ClNews  cl = new ClNews();
         DataSet ds = NewsClass.GetList(cl);
         lblnews.Text = ds.Tables[0].Rows[0]["CommentClear"].ToString();
         ds.Dispose();
     }
 }
Ejemplo n.º 2
0
        private void BindNews()
        {
            ClNews  cl = new ClNews();
            DataSet ds = NewsClass.GetList(cl);

            if (ds.Tables[0].Rows.Count > 0)
            {
                DataRow DR = ds.Tables[0].Rows[0];
                txtcontent.Value = DR["Comment"].ToString().Replace("<_", "<").Replace("_>", ">");
                lblNewsID.Text   = DR["NewID"].ToString();
            }
        }