事件控制器
public class EventController : Controller {
public ViewResult Browse(Int32 EventId) {
return View();
}
}
浏览-查看
@model IEnumerable<Events.WebUI.Models.EventModel>
@foreach (var e in Model) {
<div id="event-content">
<img src="@e.LogoUrl" width="512px" title="event header" height="83px">
</div>
<div class="event-text">
@e.EventName
@Html.ActionLink(@e.EventName, "Browse", "Event", new { EventId = @e.EventId })
</div>
在这里,我想使用操作方法,以便它应该路由到 ID 为 localhost/Event/Browse/1 的操作链接,并且在悬停时它应该显示链接
请帮我解决这个问题,我也在 route.config 中路由了路径