I want to to access key/value pair from my resource files in java script and .cshtml views. For some static content on my cshtml i don't want to create a property in my model so it would be nice if i could directly access resource files.
You can create a resx file and set its properties to public, as described here.
Then on your cshtml
you can use:
@Resources.ResNameHere.Property
To use on javascript simply render it on a script
block
<script>
var stringFromResource = "@Resources.ResNameHere.Property";
</script>
You can also implement an extension method to Html
and read the resource from anywhere, even database if you need.
public static MvcHtmlString Resource<T>(this HtmlHelper<T> html, string key)
{
var resourceManager = new ResourceManager(typeof(Website.Resources.ResNameHere));
var val = resourceManager.GetString(key);
// if value is not found return the key itself
return MvcHtmlString.Create(String.IsNullOrEmpty(val) ? key : val);
}
Then you can call as
@Html.Resource("Key")
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With