public void ShowData() { objTabController = new TabController(); if (solutionId != Guid.Empty) { SolutionComponent solutionComponent = new SolutionComponent(solutionId); lnkSolutionName.Text = solutionComponent.Solution.Title; lnkSolutionName.NavigateUrl = NexsoHelper.GetCulturedUrlByTabName("solprofile") + "/sl/" + solutionId.ToString(); OrganizationComponent organizationComponent = new OrganizationComponent(solutionComponent.Solution.OrganizationId); lnkInstitutionName.Text = organizationComponent.Organization.Name; lnkInstitutionName.NavigateUrl = NexsoHelper.GetCulturedUrlByTabName("insprofile") + "/in/" + organizationComponent.Organization.OrganizationID; lblSolutionshortDescription.Text = solutionComponent.Solution.TagLine; lblduration.Text = ListComponent.GetLabelFromListValue("ProjectDuration", Thread.CurrentThread.CurrentCulture.Name, solutionComponent.Solution.Duration.ToString()); // lblFormat.Text = ListComponent.GetLabelFromListValue("DeliveryFormat", Thread.CurrentThread.CurrentCulture.Name, solutionComponent.Solution.DeliveryFormat.ToString()); FillBeneficiaries(); FillThemes(); FillFormat(); LocationList1.SolutionId = solutionComponent.Solution.SolutionId; LocationList1.EditMode = false; mainPanel.Visible = true; EmptyPanel.Visible = false; LocationList1.LoadData(); if (!string.IsNullOrEmpty(organizationComponent.Organization.Logo)) { imgOrganizationLogo.ImageUrl = PortalSettings.HomeDirectory + "ModIma/Images/" + organizationComponent.Organization.Logo; } else { imgOrganizationLogo.ImageUrl = PortalSettings.HomeDirectory + "ModIma/Images/noImage.png"; } imgThemeIcon.ImageUrl = Request.Url.AbsoluteUri.Replace(Request.Url.PathAndQuery, "") + ControlPath + "images/theme.png"; imgBeneficiariesIcon.ImageUrl = Request.Url.AbsoluteUri.Replace(Request.Url.PathAndQuery, "") + ControlPath + "images/beneficiaries.png"; btnView.CommandArgument = solutionId.ToString(); } else { mainPanel.Visible = false; EmptyPanel.Visible = true; } }