Pass Object from Page Model to Razor Page in ASP.NET Core Razor Pages

On the Visual Studio, create new ASP.NET Core Web Application project

Select Empty Template

Click Ok button to Finish




Create new folder named wwwroot

Create new folder named images in wwwroot folder. Copy images need to use in project to images folder.

Open Startup.cs file and add new configurations as below:

using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;

namespace LearnASPNETCoreRazorPagesWithRealApps
{
    public class Startup
    {
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddMvc();
        }

        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseStaticFiles();

            app.UseMvc();
        }
    }
}




Create new folder named Models. In Models folder, create new entity class as below:

Create new class named Product.cs as below:

namespace LearnASPNETCoreRazorPagesWithRealApps.Models
{
    public class Product
    {
        public string Id { get; set; }
        public string Name { get; set; }
        public string Photo { get; set; }
        public double Price { get; set; }
        public int Quantity { get; set; }
    }
}

Create new folder named Pages. In this folder, create new Razor Page named Index as below:

using LearnASPNETCoreRazorPagesWithRealApps.Models;
using Microsoft.AspNetCore.Mvc.RazorPages;
using System;

namespace LearnASPNETCoreRazorPagesWithRealApps.Pages
{
    public class IndexModel : PageModel
    {
        public Product product { get; set; }

        public void OnGet()
        {
            product = new Product {
                Id = "p01",
                Name = "Name 1",
                Photo = "thumb1.gif",
                Price = 5.5,
                Quantity = 4
            };
        }
    }
}




@page
@model LearnASPNETCoreRazorPagesWithRealApps.Pages.IndexModel
@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
</head>
<body>

    <h3>Product Info</h3>
    <table border="1" cellpadding="2" cellspacing="2">
        <tr>
            <td>Id</td>
            <td>@Model.product.Id</td>
        </tr>
        <tr>
            <td>Name</td>
            <td>@Model.product.Name</td>
        </tr>
        <tr>
            <td>Photo</td>
            <td><img src="~/images/@Model.product.Photo" width="60" /></td>
        </tr>
        <tr>
            <td>Price</td>
            <td>@Model.product.Price</td>
        </tr>
        <tr>
            <td>Quantity</td>
            <td>@Model.product.Quantity</td>
        </tr>
        <tr>
            <td>Total</td>
            <td>@(Model.product.Price * Model.product.Quantity)</td>
        </tr>
    </table>

</body>
</html>




Open Index Razor Page with following url: http://localhost:1115

Output