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

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

php - Using grpc in Laravel, "Class 'Grpc\ChannelCredentials' not found." -

scikit learn - python sklearn KDTree with haversine distance -