/* * Bind Data is used to bind all news detail of releated news (request query string NewsID ) */ public void BindData() { StoreFront ObjNews = new StoreFront(); DataSet ds = new DataSet(); ds = ObjNews.GetNewsFront(Convert.ToInt32(Request.QueryString["ID"].ToString())); if (ds.Tables[0].Rows.Count > 0) { lblNewsTitle.Text = ds.Tables[0].Rows[0]["NewsTitle"].ToString(); litContent.Text = ds.Tables[0].Rows[0]["Description"].ToString(); } }