TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Rohan Ramani
NA
786
144.2k
for loop in html angular
Nov 28 2018 7:08 AM
Hi,
I have a table in cshtml razor page
<
tbody
>
@foreach (var item in Model.ArticleMaster)
{
<
tr
>
<
td
>
<
a
asp-page
=
"./Details"
asp-route-id
=
"@item.ArticleId"
>
@Html.DisplayFor(
modelItem
=
>
item.Title)
</
a
>
</
td
>
<
td
>
@*@Html.DisplayFor(
modelItem
=
>
item.AuthorUserId)*@
@Html.DisplayFor(
modelItem
=
>
item.AuthorName)
</
td
>
<
td
>
@Html.DisplayFor(
modelItem
=
>
item.DateAdded)
</
td
>
<
td
>
@Html.DisplayFor(
modelItem
=
>
item.Status.Status)
</
td
>
<
td
>
@Html.DisplayFor(
modelItem
=
>
item.Section.SectionName)
</
td
>
</
tr
>
}
</
tbody
>
I need to implement in angular
how to do? please help
Reply
Answers (
2
)
Difference between Angular2 ,angular4 and Angular6?
How to Find key on keydown event in Angular