Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • K.Garrein 164 posts 629 karma points
    Mar 11, 2011 @ 12:51
    K.Garrein
    0

    GetProperty

    Hey,

    I have a multilingual site.

    I have 3 properties in a document type:
    1. Content_NL
    2. Content_FR
    3. Content_EN

    Now I wish to get the language-specific Content.
    I tried the following, but it doesn't do the trick :)

    @{ string lang = "NL"; }
    @item.GetProperty( "Content_" + lang ).Value

    How do I get the Content_XX property that I need?

    Thank you.
    Kris.

  • K.Garrein 164 posts 629 karma points
    Mar 11, 2011 @ 13:15
    K.Garrein
    0

    Maybe I shouldn't post so fast :)

    This does the trick:

    @{ string lang = "NL"; }
    @item.Properties["Titel_" + lang]


    Regards.
    K.

  • Sebastiaan Janssen 5061 posts 15544 karma points MVP admin hq
    Mar 11, 2011 @ 17:07
    Sebastiaan Janssen
    0

    What didn't work in the first case? I've just ran the code and it gives me a perfect result!

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

    Continue discussion

Please Sign in or register to post replies