How to get the context object in Custom Controller Umbraco 5?

422 views Asked by At

I want to access GetDictionaryItem() function in my custom Controller so i need the Context object, i am accessing data from the Custom controller by plain jquery Ajax.

i can access the GetdictionaryItem in my SurfaceController as below

var dictionaryHelper = new DictionaryHelper(_routableRequestContext.Application);
        string dearDictonaryItem = dictionaryHelper.GetDictionaryItemValueForLanguage("Common/Dear", Thread.CurrentThread.CurrentCulture.Name, "Dear");

But i also need it in my Custom Controller,

Thanks, Sher

1

There are 1 answers

0
Sher On BEST ANSWER

create custom controller as a surface controller,

Thanks to @seraphym