Passing Data from Controller Action Method to Razor Page in ASP.NET Core MVC
We can pass the Data from Controller to View in 2 ways. 1. ViewData Example for Single value data Action Controller Code: In controller write below code to save value in ViewData. To show it in the Razor page, we can write @ViewData[“Key”] Index.cshtml View : In your cshtml to show data in front end write below line of code To save data in list … Continue reading Passing Data from Controller Action Method to Razor Page in ASP.NET Core MVC