or
Server Error in '/NavarinoWebPortal' Application.Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "repNewOrdersConf.resources" was correctly embedded or linked into assembly "App_Code.bconli2t" at compile time, or that all the satellite assemblies required are loadable and fully signed.Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.Resources.MissingManifestResourceException: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "repNewOrdersConf.resources" was correctly embedded or linked into assembly "App_Code.bconli2t" at compile time, or that all the satellite assemblies required are loadable and fully signed.Source Error:Line 507: Me.textBox39.Name = "textBox39"Line 508: Me.textBox39.Size = New Telerik.Reporting.Drawing.SizeU(New Telerik.Reporting.Drawing.Unit(14.5, Telerik.Reporting.Drawing.UnitType.Cm), New Telerik.Reporting.Drawing.Unit(3.5000009536743164, Telerik.Reporting.Drawing.UnitType.Cm))Line 509: Me.textBox39.Value = resources.GetString("textBox39.Value")Line 510: 'Line 511: 'repNewOrdersConfSource File: C:\DEV\WebSites\NavarinoWebPortal\App_Code\repNewOrdersConf.vb Line: 509Stack Trace:[MissingManifestResourceException: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "repNewOrdersConf.resources" was correctly embedded or linked into assembly "App_Code.bconli2t" at compile time, or that all the satellite assemblies required are loadable and fully signed.] System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) +7680430 System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) +583 System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) +583 System.Resources.ResourceManager.GetString(String name, CultureInfo culture) +74 System.Resources.ResourceManager.GetString(String name) +9 repNewOrdersConf.InitializeComponent() in C:\DEV\WebSites\NavarinoWebPortal\App_Code\repNewOrdersConf.vb:509 repNewOrdersConf..ctor() in C:\DEV\WebSites\NavarinoWebPortal\App_Code\repNewOrdersConf.vb:55 cInsertNewOrderDone.Page_Load(Object sender, EventArgs e) in C:\DEV\WebSites\NavarinoWebPortal\cInsertNewOrderDone.aspx.vb:24 System.Web.UI.Control.OnLoad(EventArgs e) +99 System.Web.UI.Control.LoadRecursive() +50 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627Version Information: Microsoft .NET Framework Version:2.0.50727.4952; ASP.NET Version:2.0.50727.4955public Double AverageVoltagePhase1
{ get { return (from entry in LoggedACMeterDatas select entry.VoltagePhase1).Average(); } } public Double AverageVoltagePhase2
{ get { return (from entry in LoggedACMeterDatas where entry.VoltagePhase2.HasValue select entry.VoltagePhase2.Value).Average(); } } public Double AverageVoltagePhase3
{ get { return (from entry in LoggedACMeterDatas where entry.VoltagePhase3.HasValue select entry.VoltagePhase3.Value).Average(); } } public Double AverageCurrentPhase1
{ get { return (from entry in LoggedACMeterDatas select entry.CurrentPhase1).Average(); } } public Double AverageCurrentPhase2
{ get { return (from entry in LoggedACMeterDatas where entry.CurrentPhase2.HasValue select entry.CurrentPhase2.Value).Average(); } } public Double AverageCurrentPhase3
{ get { return (from entry in LoggedACMeterDatas where entry.CurrentPhase3.HasValue select entry.CurrentPhase3.Value).Average(); } } public Double AverageWattsPhase1
{ get { return (from entry in LoggedACMeterDatas select entry.WattsPhase1).Average(); } } public Double AverageWattsPhase2
{ get { return (from entry in LoggedACMeterDatas select entry.WattsPhase2).Average(); } } public Double AverageWattsPhase3
{ get { return (from entry in LoggedACMeterDatas select entry.WattsPhase3).Average(); } } public Double AveragePowerFactor
{ get { return (from entry in LoggedACMeterDatas select entry.AvgPowerFactorAllPhases).Average(); } } public DateTime StartPeriod
{ get { return (from entry in LoggedACMeterDatas orderby entry.Timestamp select entry.Timestamp).First(); } } public DateTime EndPeriod
{ get { return (from entry in LoggedACMeterDatas orderby entry.Timestamp select entry.Timestamp).Last(); } } Hi Support Team,
I am using Telerik reporting V4.2. In one report have used to Sub report. For I have assign different data sources programmatically. But second sub report takes values of first sub report. Please see in bellow images.
Both Report output, Data Source result for Subreport1 and Data Source result for Subreport2 please find in attachment.
Datasource assign code to main report and subreport.
DataSet dsReportMaster = clsReports.SelectInvoiceReportMaster(intInvoiceId, clsProjectSession.CompanyAdminUserID); DataSet dsReportDetails = clsReports.SelectInvoiceReportDetails(intInvoiceId); DataSet dsReportProjectSummery = clsReports.SelectInvoiceReportDetailsProjectSummery(intInvoiceId); Report objReport = new Report(); objReport = new InvoiceReport(); objReport.DataSource = dsReportMaster; SubReport subReportDetails = objReport.Items.Find("subReport1", true)[0] as SubReport; subReportDetails.ReportSource.DataSource = dsReportDetails; SubReport subProjectSummery = objReport.Items.Find("subReport2", true)[0] as SubReport; subProjectSummery.ReportSource.DataSource = dsReportProjectSummery;Please help me to resolve my issue.
Thanks
-Kalpesh