protected void GVNews_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName.Equals("EditNews")) { Entity.NewsInfo oNewsInfo = new Entity.NewsInfo(); BLL.NewsLib oNewsLib = new BLL.NewsLib(); oNewsInfo = oNewsLib.GetNewsAnnouncementsById(Convert.ToInt32(e.CommandArgument)); if (oNewsInfo != null) { txtHeading.Text = oNewsInfo.StrHeading; txtDescription.Text = oNewsInfo.StrDescription; chkIsHome.Checked = oNewsInfo.ChrIsHomePage.Equals('Y') ? true : false; chkIsActive.Checked = oNewsInfo.ChrIsActive.Equals('Y') ? true : false; txtDirectLink.Text = oNewsInfo.StrDirectLink; if (txtDirectLink.Text.Trim().Equals(string.Empty)) { ViewState["strOldFileName"] = oNewsInfo.StrPDFFilename; ancPrevious.Visible = true; ancPrevious.HRef = AppConfig.GetBaseSiteUrl() + AppConfig.GetNewsAnnouncementsPDFPath() + oNewsInfo.StrPDFFilename; } ViewState["intNewsAnnouncementsId"] = e.CommandArgument.ToString(); oNewsInfo = null; oNewsLib = null; } } else if (e.CommandName.Equals("DeleteNews")) { BLL.NewsLib oNewsLib = new BLL.NewsLib(); oNewsLib.DeleteNewsAnnouncements(Convert.ToInt32(e.CommandArgument)); lblMsg.Text = "News & Announcements has been deleted successfully."; oNewsLib = null; ClearControls(); BindNewsAnnouncements(); } else if (e.CommandName.Equals("StatusChanged")) { BLL.NewsLib oNewsLib = new BLL.NewsLib(); oNewsLib.UpdateNewsAnnouncementsStatus(Convert.ToInt32(e.CommandArgument)); lblMsg.Text = "News & Announcements status has been changed successfully."; oNewsLib = null; ClearControls(); BindNewsAnnouncements(); } }
private void BindDetails() { if (Request.QueryString["type"] != null && Request.QueryString["id"] != null && Request.QueryString["fid"] != null) { BLL.NewsLib oNewsLib = new BLL.NewsLib(); Entity.NewsInfo oNewsInfo = new Entity.NewsInfo(); if (Request.QueryString["type"].ToString().ToLower().Equals("newsletter")) { trNewsletter.Visible = true; oNewsInfo = new Entity.NewsInfo(); oNewsLib = new BLL.NewsLib(); oNewsInfo = oNewsLib.GetNewsLettersById(Convert.ToInt32(Request.QueryString["id"])); if (oNewsInfo != null) { lblNewsletterDescription.Text = oNewsInfo.StrDescription; if (!oNewsInfo.StrNewsletterDate.ToString().Equals("1/1/1999 12:00:00 AM")) lblNewsletterDate.Text = oNewsInfo.StrNewsletterDate.ToShortDateString(); if (!oNewsInfo.StrPDFFilename.Equals("na.pdf")) { ancPrevious.Visible = true; ancPrevious.HRef = AppConfig.GetBaseSiteUrl() + AppConfig.GetNewsLettersPDFPath() + oNewsInfo.StrPDFFilename; } else { trNewsletterPDF.Visible = false; } } } else if (Request.QueryString["type"].ToString().ToLower().Equals("event")) { trEvent.Visible = true; if (Request.QueryString["id"] != null) { int _intEventId = 0; _intEventId = Convert.ToInt32(Request.QueryString["id"]); Entity.EventInfo oEventInfo = new Entity.EventInfo(); BLL.EventsLib oEventsLib = new BLL.EventsLib(); oEventInfo = oEventsLib.GetEventByEventId(_intEventId); if (oEventInfo != null) { lblEventActivity.Text = oEventInfo.StrActivity; lblEventComments.Text = oEventInfo.StrComments; lblEventDate.Text = oEventInfo.DtEventDate.ToShortDateString(); lblEventLocation.Text = oEventInfo.StrLocation; } oEventsLib = null; oEventInfo = null; } } else if (Request.QueryString["type"].ToString().ToLower().Equals("newsannouncements")) { trNewsAnnouncement.Visible = true; oNewsInfo = new Entity.NewsInfo(); oNewsLib = new BLL.NewsLib(); oNewsInfo = oNewsLib.GetNewsAnnouncementsById(Convert.ToInt32(Request.QueryString["id"])); if (oNewsInfo != null) { lblNewsAnnouncementDescription.Text = oNewsInfo.StrDescription; lblNewsAnnouncementDirectLink.Text = oNewsInfo.StrDirectLink; if (lblNewsAnnouncementDirectLink.Text.Trim().Equals(string.Empty)) { trNewsAnnouncementDirectLink.Visible = false; trNewsAnnouncementPDF.Visible = true; ancPreviousNewsAnnoucment.HRef = AppConfig.GetBaseSiteUrl() + AppConfig.GetNewsAnnouncementsPDFPath() + oNewsInfo.StrPDFFilename; } else { trNewsAnnouncementDirectLink.Visible = true; trNewsAnnouncementPDF.Visible = false; } oNewsInfo = null; oNewsLib = null; } } else if (Request.QueryString["type"].ToString().ToLower().Equals("library")) { trLibrary.Visible = true; Entity.LibraryInfo oLibraryInfo = new Entity.LibraryInfo(); BLL.LibraryLib oLibraryLib = new BLL.LibraryLib(); oLibraryInfo = oLibraryLib.GetLibraryByLibraryId(Convert.ToInt32(Request.QueryString["id"])); if (oLibraryInfo != null) { lblLibraryDescription.Text = oLibraryInfo.StrDescription; if (!oLibraryInfo.DtLibraryDate.ToString().Equals("1/1/1999 12:00:00 AM")) lblLibraryDate.Text = oLibraryInfo.DtLibraryDate.ToShortDateString(); if (oLibraryInfo.StrLocationType.ToLower().Equals("pdf") || oLibraryInfo.StrLocationType.ToLower().Equals("video")) { trLibraryLink.Visible = false; ancLibraryPDF.Visible = true; ancLibraryPDF.HRef = AppConfig.GetBaseSiteUrl() + AppConfig.GetLibrariesFilePath() + oLibraryInfo.StrLocation; } else { trLibraryPDF.Visible = false; lblLibraryWebsiteLink.Text = oLibraryInfo.StrLocation; } lblLibraryCategoryType.Text = oLibraryInfo.StrLocationType; lblLibraryCategory.Text = oLibraryInfo.StrCategory; oLibraryInfo = null; oLibraryLib = null; } } } }