I have a database where I have saved image

How can I display the image ?
Now I display it like this
<img alt="@album.Room_number" src="@album.ImageData" />
But I get this:

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use the Data URI scheme if your client browser supports it:
If the browser doesn’t support it you will have to create a controller action that queries the database and streams the image to the response:
and then:
Of course in this case you should not fetch the
ImageDataproperty within the initial request to avoid to unnecessary query it while not using it anymore in the view.