ASP.NET meta:resourcekey

后端 未结 1 1340
醉话见心
醉话见心 2020-12-05 13:04

I\'m looking at an ASP.NET application which makes heavy use of meta:resourcekey which seem to be connected to the resx files.

This is an area that seeems to have co

1条回答
  •  自闭症患者
    2020-12-05 13:47

    The meta:resourcekey syntax allows you use declarative syntax for Implicit Resource expressions. This is used when localizing a site for international use. As the Quickstarts (linked below) explain, these kind of expressions are linked to .resx files located in the App_LocalResources folder.

    The benefit of this kind of expression is that it can use multiple properties for a single control which are defined in the .resx file instead of the ASPX itself.

    For instance, take the label below:

    
    
    

    The resx file for this page could contain data for multiple properties attached to the label such as:

      
        Default Font name
      
      
        Text in default language.
      
      
        Tooltip in default language.
      
    

    The ASP.NET quickstarts provide a great primer if you want to understand the concept.

    0 讨论(0)
提交回复
热议问题