vote up 3 vote down star
2

I am creating a directory of sorts with members and their profiles. I'm using the MVC framework in .net.

I have a view that allows you to find members based on some criteria so my controller has a Find() action result, then another that accepts the post verb. So, somesite.com/members/find displays the search tools, then once the form has been submitted the same url displays the results. I now want the member name to link to another actionresult method in the same controller for displaying their profile and i want the url's to follow this pattern somesite.com/members/{username}.

How do i create a controller method that will do this? Is there more to it than that?
Do i need to map new routes in the global.asax?

Thanks for the help.

flag

1 Answer

vote up 3 vote down check

First create your action method on the controller like this:

public ActionResult Profile(string userName)
{
    // Do What you want with the userName
    throw new System.NotImplementedException();
}

Then create a new route in your global.asax file to handle the somesite.com/members/{username} like this:

routes.MapRoute(
    "Profile",
    "members/{username}",
    new { controller = "Members", action = "Profile", userName = "" }
);

That's it. I am not sure what you are calling the controller that will host the action method. I assumed members.

link|flag
Thanks for your quick reply... Is their a correlation between the name of the maproute and the actionResult method name (i.e. Profile - Profile)? – Jeremy Jan 23 at 6:31
No, that is just the name I gave the route. – Dale Ragan Jan 23 at 6:41
I added the two things you suggested but get any results after trying it out. browsed to somesite.com/members/someuser and the profile action was not called... simply received a "The resource cannot be found" message. Thanks again – Jeremy Jan 23 at 6:48
What is the controller's name that you added the action to? I did a quick test before posting my answer and it worked fine. – Dale Ragan Jan 23 at 6:55
my controller is "Vendor" class name VendorController... each vendor should have a profile. So in the global.asax i added a route named "Profile" with a url of "vendor/{username}" and "new { controller = "Vendor", action = "Profile", userName = "" }" as the defaults – Jeremy Jan 23 at 7:00
show 15 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.