I am trying to put a logo in the page header but i get the following error:
Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Timesheet.resources" was correctly embedded or linked into assembly "App_Code.19fyk_ap" at compile time, or that all the satellite assemblies required are loadable and fully signed.
Any Suggestions will be greatly appreciated
Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Timesheet.resources" was correctly embedded or linked into assembly "App_Code.19fyk_ap" at compile time, or that all the satellite assemblies required are loadable and fully signed.
Any Suggestions will be greatly appreciated
6 Answers, 1 is accepted
0
Hello Shiraaz,
The simple way to avoid resource resolution problem is to follow our recommendations for the solution structure especially for the web sites.
When you put the report in the App_Code folder, it is compiled dynamically to assembly with random generated name. In your example it is compiled to App_Code.19fyk_ap but this name is used as a part of the namespace to resolve the name of the resources. If you use our recommendation all reports (included in the class library) will be compiled to the assembly with fixed name and this problem should disappear.
Sincerely yours,
Hrisi
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
The simple way to avoid resource resolution problem is to follow our recommendations for the solution structure especially for the web sites.
When you put the report in the App_Code folder, it is compiled dynamically to assembly with random generated name. In your example it is compiled to App_Code.19fyk_ap but this name is used as a part of the namespace to resolve the name of the resources. If you use our recommendation all reports (included in the class library) will be compiled to the assembly with fixed name and this problem should disappear.
Sincerely yours,
Hrisi
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Narendra
Top achievements
Rank 2
answered on 18 Aug 2008, 06:35 AM
Hello Hrisi,
I am also facing the same problem. I have taken a seperate class library for reports section and binded data dynamically. I have followed your suggested structure. But still i am facing the same.
May I know what else i need to change in my web application and in class library.
Regards,
Narenrda P
I am also facing the same problem. I have taken a seperate class library for reports section and binded data dynamically. I have followed your suggested structure. But still i am facing the same.
May I know what else i need to change in my web application and in class library.
Regards,
Narenrda P
0
Hi Narendra,
If the reports are defined and referenced from a class library this problem cannot happen. There is no other reason for the error. Please check whether you have not forgotten a reference to a report which stills stays in the App_Code folder of the web site.
Best wishes,
Chavdar
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
If the reports are defined and referenced from a class library this problem cannot happen. There is no other reason for the error. Please check whether you have not forgotten a reference to a report which stills stays in the App_Code folder of the web site.
Best wishes,
Chavdar
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Shiraaz
Top achievements
Rank 1
answered on 18 Aug 2008, 09:40 AM
Hi,
i made sure i am referencing a report that is within the app_code folder,
it doesnt make sense. . . . It just doesnt work
i made sure i am referencing a report that is within the app_code folder,
it doesnt make sense. . . . It just doesnt work
0
Hi Shiraaz,
Could you please open a support ticket and attach your solution so that we can review it here? Thank you in advance.
Regards,
Chavdar
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Could you please open a support ticket and attach your solution so that we can review it here? Thank you in advance.
Regards,
Chavdar
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Shiraaz
Top achievements
Rank 1
answered on 18 Aug 2008, 11:48 AM
Hi Telerik Team,
I have solved the issue by creating the Report in a new project in the solution
and i reference the report from there.
I have solved the issue by creating the Report in a new project in the solution
and i reference the report from there.