I just want to display some text in my views based on culture. I used label control to do that first
In view
<%= Html.LabelFor(m => m.FormDescription)%>
In model
[DisplayName("Description")]
[LocalizationDisplayName("CreateForm_FormDescription",typeof(App_GlobalResources.Label))]
public string FormDescription { get; set; }
This works fine. Now i found another way to display a text in my view
In View
<%: VoxMVC.App_GlobalResources.Label.CreateForm_FormDescription%>
Both methods shows my text in view perfectly.Which method is more efficient ??