in views/jump/index have problem.
first rows:
@model IEnumerable<WhislaMvc.Areas.Admin.Models.Jump>
@{
ViewBag.Title = "Index";
}
@model and ViewBaf – do not see.
I take error:
compilation Error Compiler Error Message: CS0103: The name ‘model’
does not exist in the current context Compiler Error Message: CS0103:
The name ‘ViewBug’ does not exist in the current context

Update:
I comment model and ViewBag
@Html.ActionLink("Create New", "Create")
Html not have method ActionLink why????
From your question description, it shows that, I think you are using
Asp.Net MVC 2and you just tried to use thefunctionality of Asp.Net MVC 3.ViewBagcomes withAsp.Net MVC 3 (It's feature of Asp.Mvc 3)There are few suggestions that you can try to avoid compilation error.
Install
Asp.Net MVC 3(Install .Net Framework 4 prior)Change your project property.(Right Click Web Project -> click‘Properties’ -> Application tab -> Target Framework -> Change to
.NET Framework 4
Check and Change your web.config as below:
Hope this helps!