We just recently converted our ASP.net 1.1 application to 2.0 with VS2005. This is the error I get when I login to my application:
Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "FrameworkTest.DTPMenuControl.resources" was correctly embedded or linked into assembly "App_Code.eh05uamo" 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 "FrameworkTest.DTPMenuControl.resources" was correctly embedded or linked into
assembly "App_Code.eh05uamo" at compile time, or that all the satellite assemblies required are loadable and fully signed.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[MissingManifestResourceException: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "FrameworkTest.DTPMenuControl.resources" was correctly embedded or linked into assembly "App_Code.eh05uamo" 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) +655
System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) +681
System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) +681
System.Resources.ResourceManager.GetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) +331
skmMenu.Menu.RegisterClientScriptBlock() +232
skmMenu.Menu.OnPreRender(EventArgs e) +20
System.Web.UI.Control.PreRenderRecursiveInternal() +77
System.Web.UI.Control.PreRenderRecursiveInternal() +161
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1360
Anybody have any clues or ideas to fixing this? Any would be appreciated.
I have a DTPMenuControl.vb class that is our menu. The App_GlobalResources does not contain that file that is mentioned in the error, but
I think it wants to find it. I've tried using Resgen to create it with no luck, please help.
jlrolin
Member
415 Points
133 Posts
Could not find any resources appropriate for the specified culture or the neutral culture?? Conve...
Apr 03, 2007 03:20 PM|LINK
We just recently converted our ASP.net 1.1 application to 2.0 with VS2005. This is the error I get when I login to my application:
Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "FrameworkTest.DTPMenuControl.resources" was correctly embedded or linked into assembly "App_Code.eh05uamo" 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 "FrameworkTest.DTPMenuControl.resources" was correctly embedded or linked into assembly "App_Code.eh05uamo" at compile time, or that all the satellite assemblies required are loadable and fully signed.
Source Error:
Stack Trace:
Anybody have any clues or ideas to fixing this? Any would be appreciated.
I have a DTPMenuControl.vb class that is our menu. The App_GlobalResources does not contain that file that is mentioned in the error, but
I think it wants to find it. I've tried using Resgen to create it with no luck, please help.
Caio E
Member
14 Points
2 Posts
Re: Could not find any resources appropriate for the specified culture or the neutral culture?? C...
Apr 17, 2007 11:00 PM|LINK
Hi,
Global resource:
"object.property" = Resources."name of file global resource"."object"
Local resource:
"object.property" = Me.GetLocalResourceObject("full name of object like: Object.Text").ToString()