hi frnds
I have a log table
2 change status succefully abs 25-03-2017
3 changed data def 25-03-2017
here i want show these data as summary and i am sharing to my views so how to do
i have a summary views where i am doing some functionality like
1. if i gave comment it is saving in the log table
2. if i change city also saved in log table
3 if i change status also save in log table
means 3 functionality saving on master table like log table
and this log table i have fielsd like ID , DESCRIPTION , DATE , LOGIN BY
AND THESE DETAILS I WANTS TO SHOW IN SUMMARY DESCRION VIEW HOW TO DO THAT
--------------------------------------------------------------------------------------------------
user_ID Description By Date
--------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
1 inserted comment successfully Ritesh 25-03-2017
2 change status succefully abs 25-03-2017
3 changed data def 25-03-2017
-----------------------------------------------------------------------------------------------------
here i want show these data as summary and i am sharing to my views so how to do
@model Managenemt.ViewModel.DataViewModel
@{
Layout = "~/Views/Shared/_LayoutDashboard.cshtml";
}
Layout = "~/Views/Shared/_LayoutDashboard.cshtml";
}
@Html.ActionLink("city", "city", new { id = Model.user_ID }) | @Html.ActionLink("Attach", "FileUpload", new { id = Model.user_ID }) | @Html.ActionLink("Status", "Status", new { id = Model.user_ID }) |
@Html.DisplayName(" Description") | @Html.DisplayName(" By") | @Html.DisplayName(" Date") |
|---|
@Html.ActionLink("Back", "Index", null, new { @class = "btn btn-filter" })
Nitin SontakkePosted Apr 4, 2017, 3:18 AM