1.html.ActionLink返回的指向指定controller、指定action的超連接標籤<a>標籤.若是沒有指定controller,則默認爲本頁面對應的Controller.html
如@Html.ActionLink(「連接文本」、「someaction」、「somecontroller」,new { id = " 123 " },null)
生成:
< a href = " / somecontroller / someaction / 123 " >連接文本</a>post
二、Html.Action能夠執行一個控制器的action,並將返回結果做爲html string。url
3.Url.Action返回的是指定控制器指定action的完整URL地址,不含<a>標籤code
用法:orm
<form name="form1" action="<%:Url.Action("Reply","LatestJoinCompany") %>" method="post">htm
<a href="<%:Url.Action("SelectDetail","OutBox",new{letterid=m.LetterID}) %>"><%=m.LetterTitle %></a>get
說明:string
<%:Url.Action("SelectDetail","OutBox",new{letterid=m.LetterID}) %>it
返回/OutBox/SelectDetail?letterid=m.LetterIDio