asp.net MVC html.ActionLink的幾種參數格式

來源:互聯網
上載者:User

標籤:一個   color   需要   style   關鍵字   tail   ext   asp.net   detail   

一 Html.ActionLink("linkText","actionName")

該重載的第一個參數是該連結要顯示的文字,第二個參數是對應的控制器的方法,

預設控制器為當前頁面的控制器;

1 //如果當前頁面的控制器為Products,則 2 Html.ActionLink("detail","Detail")3 //則會產生 4 <a href="/Products/Detail">all</a>

二 Html.ActionLink("linkText","actionName","controlName")

該重載比第一個重載多了一個參數,他指定了控制器的名稱,

1 //如2 Html.ActionLink("detail","Detail","Products")3 //則會產生4 <a href="Products/Detail">all</a>

三 Html.ActionLik("linkText","actionName",routeValues)

routeValue可以向action傳遞參數,

1 //如2 Html.ActionLink("detail","Detail",new { id=1})3 //會產生4 <a href="Products/Detail/1">detail</a>,

此處假設當前的控制器是Products.

四 Html.ActionLink("linkText","actionName",routeValues,htmlAttributes)

htmlAttribute可以設定<a>標籤的屬性,

1 //如 2 Html.ActionLink("detail","Detail",new{id=1},new{ target="_blank"})3 //會產生 4 <a href="Products/Detail/1" target="_blank">detail</a>,

需要主要的是如果寫成 new{ target="_blank",class="className"}則會報錯,

因為class是關鍵字,此處應該寫成 @class="className"。

 

五 Html.ActionLink("linkText","actionName","controlName",routeValues,htmlAttributes)

該重載包含了上面提到的所有參數類型

asp.net MVC html.ActionLink的幾種參數格式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.