function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
di_zoudi_zou 

How do I access a dictionary in my Visualforce page?

I have a custom controller that returns a dictionaty like this:

 

Map<String, String>

 

In my visualforce page, how do I access this dictionary? Beofre the Winter '13 release, I could do this:

 

<apex:variable value="{!results[key]}" var="result"/>

 

However, this no longer works with the Winter '13 release. How do I do this in the latest release?