Can I add a class to an HTML.ActionLink in MVC3

前端 未结 5 2094
名媛妹妹
名媛妹妹 2020-12-02 17:52

I have this code and would like to add a class to the link. Is it possible to do this in MVC3?

Html.ActionLink(\"Create New\", \"Create\")
5条回答
  •  日久生厌
    2020-12-02 18:48

    @Html.ActionLink("ClickMe",  // link text
                     "Index", // action name
                     "Home",  // controller 
                     new { id = 2131 }, // (optional) route values
                     new { @class = "someClass" }) // html attributes
    

提交回复
热议问题