I have a link like this:
<a href='Member/MemberHome/Profile/Id'><span>Profile</span></a>
and when I click on this it will call this partial page:
@{
switch ((string)ViewBag.Details)
{
…
I have recently started playing around with ASP.net MVC (4), but I can't wrap my head around this one issue I'm having. I'm sure it's easy when you know it.
I'm essentially trying to do the the following in my …