You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
344 B

---
sidebar_position: 3
title: Creation of the add page
---
## Creation of the page
As before, create a new page which will be named `Add.razor` and the partial class `Add.razor.cs`.
## Final source code
```cshtml title="Pages/Add.razor"
@page "/add"
<h3>Add</h3>
```
```csharp title="Pages/Add.razor.cs"
public partial class Add
{
}
```