How to access global resources in a view using asp.net mvc razor

Try this,

@Resources.General.Hello

syntax: Resources.[ResourceName].[Property]


To access value from resoure file in view

Add this name space

@using System

Then display the value like this

@ResourceFile.Address  //ResouceFile is the name of the ResouceFile

This method is used when evironment culture thread is used.