Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# ASP.NET MVC Forms Adding Form Validation Displaying Validation Messages

Vicky Lien
Vicky Lien
2,880 Points

Capture Selected Value from Drop Down List and Display Message

This might be a silly question and not really related to validation. But I am playing with adding new Display Messages to the application and I found that displaying

TempData["Message"] = entry.Date.ToString(); would successfuly display the date, but trying

TempData["Message"] = entry.Activity.Name; does not work.

If I want to capture the name of the Activity that the user selected (not ActivityId) on Controller and do things with it, how should I do that?

Any suggestion would be helpful!