Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this Xslt statement, which gets the value out of a dictionary

/propertyAlias//value[lang(Culture:GetName())]

I'm stuck trying to get it to work in Razor.

share|improve this question
3  
Could you post some more code please? – Eric Herlitz Oct 8 '12 at 9:06

closed as not a real question by Dimitre Novatchev, LittleBobbyTables, rene, Justin Boo, jv42 Oct 8 '12 at 14:05

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

An xslt statement could look like this

<xsl:value-of select="umbraco.library:GetMedia(333, 'false')/altText//value[lang(Culture:GetName())]" />

Where altText is the property name of the selected element

Get something from the top node

<xsl:value-of select="$currentPage/ancestor-or-self::node[last()]/anotherProperty//value[lang(Culture:GetName())]"/>

This is a quite good reference on Umbraco XSLT

Please note that I'm not in a test environment so these may need some tweaking. Also if you want better responses please post some more code.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.