using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class ucHomeBlog : System.Web.UI.UserControl { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) DisplayBlog(); } private void DisplayBlog() { clsBlog blog = new clsBlog(); blog.GetHomeSnippet(); ltTitle.Text = blog.bl_title; ltSnippet.Text = blog.bl_snippet; if (blog.CommentCnt > 0) { ltComments.Text = blog.CommentCnt.ToString() + " Comment"; if (blog.CommentCnt > 1) ltComments.Text += "s"; } else ltComments.Text = " "; hlBlog.NavigateUrl = "Blog-View.aspx?id=" + blog.bl_id; } }