User-702958064 posted
Hi
I have web application with mutil level file as follows
App_GlobalResources
App_LocalResources
test.aspx.resx
test1.aspx.resx
Forms
test.aspx
test1.aspx
The problem is that the test1.aspx links to its resx file, but the test.aspx does not. Were do i have to put the test.aspx.resx file for it to link with the test.aspx file under the folder forms.
The code i use to link the files is
<asp:LinkButton
ID="lnkResources"
Runat="server"
meta:resourcekey="LinkButtonResource2"/>
This works fine for the test1.aspx file, but not the test.aspx file.
Can any one help?