Exercises: Razor Views
In this chapter, we started working on an application for tracking various coding events around town.
Getting Started
Open up your CodingEvents project in Visual Studio. Create and checkout a new branch to complete these exercises.
The code you start with should roughly resemble this branch . If you have been coding along with the video lessons, you’re probably in good shape.
If you need a git refresher check out the resources in this chapter’s Next Steps
As always, give the branch a useful name, like view-exercises.
Now, let’s add descriptions to our events.
Expanding our Events Schedule
In this lessons, we learned how to use templates to display the elements in a static list called
Events. Let’s convert ourEventslist to aDictionary. The structure of a dictionary enables us to add descriptions to our events. You’ll need to think about what data types the event name and description will be.TipIf you need to refresh your memory on dictionaries, refer to this page .
Update the
Events/Add.cshtmltemplate with a new field for a user to submit an event description.TipYou’ll want to also add some
labeltags to your form to let the user know what data they are entering.Back in
EventsController.cs, add the description parameter to theNewEventaction method and within the method, add the new event key/value pair to theEventsdictionary.TipWhatever value you provided in the
nameattribute of your new description field is the name of the parameter.Now to Events/Index.cshtml. Replace the
ulwith atableto display event names and descriptions.Lastly, modify
_Layout.cshtmlto display links for the Coding Events app (onlyEvents/IndexandEvents/Addfor now).