1
<% foreach (var item in Model) { %>
<table width="100%" class="topicContainer">
<tr>
<td> <%: Html.DisplayFor(modelItem => item.headerclob) %></td>
</tr>
<tr>
<td><%: Html.ActionLink("ViewTopic", "ViewTopic","Forum" ,
new { id=item.topicId },null) %></td>
</tr>
</table>
<% } %>
我想鏈接ViewTopic item.headerclob
應該顯示在超鏈接而不使用Razor。html.actionlink以C#變量作爲參數
我也想應用它的CSS。
是的,這是一個輕微的錯誤,我剛剛看到它。必須錯誤地輸入雙引號。請將此標記爲答案,如果這有助於謝謝 – Jayanga
如何將CSS應用於Html.ActionLink – coder25
編輯答案審查它 – Jayanga