> For the complete documentation index, see [llms.txt](https://eleven-fifty-academy.gitbook.io/dotnet-201-elevennote/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://eleven-fifty-academy.gitbook.io/dotnet-201-elevennote/elevennote-parts-1-11/part-5-notecreate/5.0-createmethod.md).

# 5.0: NoteCreate

In this module we'll be setting up the Create Controller method.

## 5.0: Create *GET* Method

This section creates a *GET* method that gives users a `View` in which they can fill in the `Title` and `Content` for a new note.

In the **Note Controller**, add a `Create()` method under the `Index()` method

```csharp
        var model = new NoteListItem[0];
        return View(model);
    }
//Add method here VVVV
    // GET
    public ActionResult Create()
    {
        return View();
    }
```

Again, this is the *GET* method. We are making a request to get the Create View. This method will run and the app will break. Why?

Because we don't have a view, and we don't have a model for the view.
