Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

clickable table row asp.net core

@foreach (var user in Model.Users)
{
    <tr onclick="location.href = '@(Url.Action("ShowProfile", "Users", new { userId = user.UserId }))'">
    //rest of your markup for that table row
    </tr>
}
 
PREVIOUS NEXT
Tagged: #clickable #table #row #core
ADD COMMENT
Topic
Name
2+2 =