locked
Were do you put the resx files? RRS feed

  • Question

  • 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?

    Tuesday, December 6, 2005 8:56 AM

All replies

  • User287763314 posted

    hello.

    since it looks like forms is a folder, you have to create an app_localresources folder inside forms and put the test.aspx.res filei nside it.

    Tuesday, December 6, 2005 9:16 AM
  • User-702958064 posted
    Thanks that work.
    Wednesday, December 7, 2005 5:14 AM