본문 바로가기
.Net

.NET/MVC - ActionLink 새창에서 열기

by 올엠 2024. 2. 24.
반응형

4번째 인자를 활용

위 글을 읽어보면 4번째 인자는 route 관련 인자로 활용된다.

public static System.Web.Mvc.MvcHtmlString ActionLink (this System.Web.Mvc.HtmlHelper htmlHelper, string linkText, string actionName, object routeValues);

아래와 같이 target = "_blank" 로 지정할 경우 브라우저의 새로운 창으로 아래 정보를 전달하게 된다.

@Html.ActionLink(item.date.ToString(), "History", new { ip = item.address }, new { target = "_blank" })
 
반응형