ASP.NET MVC not displaying image

PeanutsMonkey

I have the code below however when i execute the page i get the error as follows

/Images/@Model.ImageID.jpeg

Error

CS1061: 'int' does not contain a definition for 'jpeg' and no extension method 'jpeg' accepting a first argument of type 'int' could be found (are you missing a using directive or an assembly reference?)

If i do /Images/@Model.ImageID%20.jpeg, there is no error but no image is displayed.

Viktor Bahtev

You can try:

/Images/@(Model.ImageID).jpeg

In your example the Razor View Engine thinks that you want to call property jpeg on Model.ImageID but ImageID is of type int and does not contain a definition for jpeg as the error says. When you add the parenthesis you tell to Razor to execute as expression only what is inside them and .jpeg became just a text after the Id. This is called Explicit expression.

You can find something useful here - Razor Syntax Quick Reference.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Is it correct way of displaying Image from .NET Core API in ASP.NET MVC View?

From Dev

ASP.NET mvc html columns displaying

From Dev

ASP.NET MVC Validation errors not displaying

From Dev

Displaying image from db in Razor/MVC5 (Asp.net)

From Dev

Angular on top of ASP.NET MVC, displaying Errors

From Dev

asp.net mvc editor template is not called and displaying text

From Dev

Displaying a 404 Not Found Page for ASP.NET Core MVC

From Dev

Displaying a data saved successfully message in ASP.Net MVC

From Dev

ASP.NET MVC: Displaying multiple Charts from Model

From Dev

Displaying images from database in an ASP.NET MVC View

From Dev

DatePicker not displaying properly in Bootstrap ASP.NET MVC 5

From Dev

Displaying ModelState Errors with AngularJS in ASP.NET MVC

From Dev

Displaying specific Enum Values in a Dropdown in Asp.Net Mvc

From Dev

ViewData not displaying content in View (asp.net mvc c#)

From Dev

Displaying several binary images in ASP.NET MVC

From Dev

DatePicker not displaying properly in Bootstrap ASP.NET MVC 5

From Dev

displaying last record in the database asp.net mvc

From Dev

ASP.NET MVC5 Displaying String in a TextBox

From Dev

ASP.NET MVC Telerkik AutoComplete Not displaying record

From Dev

ASP.NET MVC: Displaying multiple Charts from Model

From Dev

Displaying a 404 Not Found Page for ASP.NET Core MVC

From Dev

My Enum values not displaying Properly asp.net MVC

From Dev

Asp.net MVC 5, displaying a label on button click?

From Dev

Autocomplete not displaying image in mvc

From Dev

ASP.NET Dynamic Image ToolTip Not Displaying Within Table

From Dev

c# asp.net displaying image in gridview

From Dev

Asp.net MVC image caching in browser

From Dev

Image upload to tinymce for asp.net mvc

From Dev

ASP.net MVC Image Routing

Related Related

  1. 1

    Is it correct way of displaying Image from .NET Core API in ASP.NET MVC View?

  2. 2

    ASP.NET mvc html columns displaying

  3. 3

    ASP.NET MVC Validation errors not displaying

  4. 4

    Displaying image from db in Razor/MVC5 (Asp.net)

  5. 5

    Angular on top of ASP.NET MVC, displaying Errors

  6. 6

    asp.net mvc editor template is not called and displaying text

  7. 7

    Displaying a 404 Not Found Page for ASP.NET Core MVC

  8. 8

    Displaying a data saved successfully message in ASP.Net MVC

  9. 9

    ASP.NET MVC: Displaying multiple Charts from Model

  10. 10

    Displaying images from database in an ASP.NET MVC View

  11. 11

    DatePicker not displaying properly in Bootstrap ASP.NET MVC 5

  12. 12

    Displaying ModelState Errors with AngularJS in ASP.NET MVC

  13. 13

    Displaying specific Enum Values in a Dropdown in Asp.Net Mvc

  14. 14

    ViewData not displaying content in View (asp.net mvc c#)

  15. 15

    Displaying several binary images in ASP.NET MVC

  16. 16

    DatePicker not displaying properly in Bootstrap ASP.NET MVC 5

  17. 17

    displaying last record in the database asp.net mvc

  18. 18

    ASP.NET MVC5 Displaying String in a TextBox

  19. 19

    ASP.NET MVC Telerkik AutoComplete Not displaying record

  20. 20

    ASP.NET MVC: Displaying multiple Charts from Model

  21. 21

    Displaying a 404 Not Found Page for ASP.NET Core MVC

  22. 22

    My Enum values not displaying Properly asp.net MVC

  23. 23

    Asp.net MVC 5, displaying a label on button click?

  24. 24

    Autocomplete not displaying image in mvc

  25. 25

    ASP.NET Dynamic Image ToolTip Not Displaying Within Table

  26. 26

    c# asp.net displaying image in gridview

  27. 27

    Asp.net MVC image caching in browser

  28. 28

    Image upload to tinymce for asp.net mvc

  29. 29

    ASP.net MVC Image Routing

HotTag

Archive