<html>
<head runat="server">
<meta name="viewport" content="width=device-width" />
<title>Login</title>
</head>
<body>
<div>
<a href="/Login/Index">跳转到Login控制器下的Index视图</a><br />
<a href="<%:Url.Action("Index")%>">跳转到相同控制器下的Index视图</a><br />
<a href="<%:Url.Action("Index","Login")%>">跳转到Login控制器下的Index视图</a><br />
<%--跳转到相同控制器下的Index视图--%>
<%: Html.ActionLink("跳转到相同控制器下的Index视图", "Index")%>"<br />
<%:Html.ActionLink("跳转到Login控制器下的Index视图", "Index", "Login")%>
<%:Html.ActionLink("跳转到Login控制器下的Index视图", "Index", "Login")%>
</div>
</body>
</html>原文:http://blog.csdn.net/fanbin168/article/details/38824323