asp.net mvc - Why I get error when I try to display image? -


i work use asp.net mvc5 in project.

i try display image stored in shared folder in project:

 <img src="@url.content(~/views/shared/logo.png)" alt="" /> 

but error on fly:

compiler error message: cs1525: invalid expression term '/'  

any idea why error above?

@url.content helper needs string parameter should write this:

<img src="@url.content("~/views/shared/logo.png")" alt="" /> 

Comments

Popular posts from this blog

matlab - error with cyclic autocorrelation function -

django - (fields.E300) Field defines a relation with model 'AbstractEmailUser' which is either not installed, or is abstract -

c# - What is a good .Net RefEdit control to use with ExcelDna? -