| BC wrote
Server Error in '/' Application.
Unable to find a default resource for Home.
|
Well I have the same problem and could not get it to work. I changed the regional settings on the server, the language settings of the browser and the web.config settings:
<globalization culture="en-US" uiCulture="en" requestEncoding="UTF-8" responseEncoding="UTF-8" fileEncoding="UTF-8" resourceProviderFactoryType="BugNET.Providers.ResourceProviders.DBResourceProviderFactory, BugNET.Providers.ResourceProviders" />
<httpRuntime maxRequestLength="4000" executionTimeout="1000"/>
Also tried to add other cultures to the BugNet_StringRecources table but still the same error...
from the SQL profiler the following query is executed:
exec sp_executesql N'SELECT resourceType, cultureCode, resourceKey, resourceValue FROM BugNet_StringResources WHERE
(resourceType=@resourceType) AND (cultureCode=@cultureCode) AND (resourceKey=@resourceKey)',N'@resourceType nvarchar(12),@cultureCode
nvarchar(2),@resourceKey nvarchar(4)',@resourceType=N'TabMenu.ascx',@cultureCode=N'en',@resourceKey=N'Home'
When this query is manually executed no values are returned!!
Any suggestions?