I was working on NopCommerce, and it has an HTML helper @T("")
that takes a string key and fetches its value from the database.
I want to implement this in my project. I googled a lot but didn't find any help on how they created a helper method like this.
Can somebody help me creating similar helper like this?
You need to tell razor to use your own
WebViewPage
. You declare this inside theweb.config
file underViews
folder. Your customWebViewPage
must be specified in thepageBaseType
attribute of thepages
element. All the cshtml implementations will inherit your customWebViewPage
and you can access the pulic or protected properties and method of your customWebViewPage
.