Hi Community
I am getting following error while using Partial view with @Html.Partial()
Code:
@inherits Umbraco.Web.Mvc.UmbracoTemplatePage
@using PBDesk.Website.Extension.UmbHelpers
@using PBDesk.DataContract.UDocs
@{
eBook ebod = ContentHelper.GetEBOD();
}
<div class="span3">
<h2>eBook Of The Day</h2>
<div>@ebod.NiceUrl</div>
<div>@CurrentPage.Id</div>
<div class="image-wrapper custom-image-wrapper">
<i class="icon-book"></i>
</div>
<p>@ebod.Title <a href="@ebod.NiceUrl"><img alt="@ebod.Title" src="@ebod.ThumbnailUrl" /><br/><br/><button type="button" class="btn btn-danger">Get the eBooks »</button></a></p>
</div>
Error: