Hi,
I have a masterpage and i have also placed a localResources to get the language values.
the masterpage inherits from a
vb class in app_codee folder
when i try to get values through GetLocalResourceObject i get this error:Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "masterpage.master.resources" was correctly embedded or linked into assembly "App_LocalResources.root.j-yiwej6" at compile time, or that all the satellite assemblies required are loadable and fully signed.
here is the code in class of masterpage:
Namespace myNamespace
Public Class MasterPage
Inherits System.Web.UI.MasterPage
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
HypNewMember.Text = GetLocalResourceObject("NewMember")
End Sub
End Class
End Namespace