剃刀c#中的if else语句调用不同的视图

时间:2019-03-07 14:17:01

标签: c# asp.net-mvc-4 if-statement

我正在将MVC4与C#一起使用,并且有一个共享的_Layout视图,该视图具有通过“ homeController”链接到首页“ index”的链接。

   <p class="site-title"> 
@if (controller = Roles) {  
<a href="~/Roles/Index/" id="logo-holder">
 } else {
         <a href="~/Home/Index/" id="logo-holder">} 
         <img class="navbar-header" alt="logo" 
         src="~/Images/Comtrex_Logo_Blue_&_Orange.png" height="60" 
         width="302">
         <span style="padding-top:2em">Cloud Reporting</span>
         </a>
    </p>

如何添加以及if else语句根据用户当前所在的视图导航到不同的链接?

0 个答案:

没有答案