MVC razor syntax for accessing a static model member

6.2k Views Asked by At

For MVC razor, what is the syntax on the .cshtml page to access a static model member (variable), for example,

@Html.DisplayFor(@(myNameSpace.myClass.myStaticVarName))

I did this after being warned by the auto-complete to use the type specifier instead of an instance element.

However, the above throws a run-time error:

Compiler Error Message: CS1646: Keyword, identifier, or string expected after verbatim specifier: @

4

There are 4 best solutions below

1
On BEST ANSWER

You cannot use the template helpers (Display, DisplayFor, EditorFor, etc.) because they all have a hidden parameter which is the model given to the view.

To display just the value of the class variable, use @myNameSpace.myClass.myStaticVarName

0
On

If understood your question, Could it be "model.myStaticVarName"?

2
On

You shouldn't have 2 @ on 1 line if the line starts with it. Remove the second @:

@Html.DisplayFor(myNameSpace.myClass.myStaticVarName)
0
On

It's just assign it to a variable:

@{
var a = myNameSpace.myClass.myStaticVarName;
@Html.DisplayFor(m=> a)
}