我目前在Index.cshtml
頁代碼:如何將名稱設置爲從@ Html.ActionLink CSHTML頁面一家新開張的選項卡的標題
@Html.ActionLinks(@Html.ActionLink(objList.Name, "Name", "ControllerName", new {Id=objList.Id}, new {target = "_blank"}))
上面的代碼讓我打開一個頁面(Name.cshtml
)點擊Index
頁面中的鏈接後,在新標籤頁中。但我的目標是爲新標籤指定一個名稱(objList.Name
)作爲Title
。 因此,我在以下代碼中添加了Title屬性,但它不能按預期工作。
@Html.ActionLinks(@Html.ActionLink(objList.Name, "Name", "ControllerName", new {Id=objList.Id}, new {target = "_blank", title = objList.Name}))
如何實現這個目標?
在你name.cshtml標記 -
Thers是因爲
是的 - 將標記添加到您的cshtml頁面 - 您不需要任何額外的代碼在行動鏈接 – 2013-04-18 07:27:38