Try this
<img src="~/Content/CompanyLogo/@(Model.CompanyLogo).jpg" />
Assuming CompanyLogo is a property of your model,Razor will render the value of your CompanyLogo property when the view is rendered.
Note that i used @() syntax. The parenthesis syntax explicitly tells razor that it is an expression to be evaluated.
Here is a handy list of razor syntax reference, written by Phil
If it is in a for each loop, try this
@foreach (var img in Model.Images)
{
<img src="@Url.Content("~/Content/CompanyLogo/"+img.CompanyLogo+".jpg")"/>
}
or a more simplified version (~ works from ASP.NET MVC4 onwards only)
@foreach (var img in Model.Images)
{
<img src="~/Content/CompanyLogo/@(img.CompanyLogo).jpg""/>
}