Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i wish to have the following url(s).. and i'm not sure how i should do the following:

1) Route registered in the global.asax
2) Controller method

Urls/Routes

- http://www.mysite.com/
- http://www.mysite.com/?page=2
- http://www.mysite.com/?tags=fooBar
- http://www.mysite.com/?page=2&tags=fooBar

Please note - i do not want to have http://www.mysite.com/{page}/{tags}/ etc.. if that difference makes sence. I also understand about the default routes, but i'm not sure how to tweak them to make it do what i require.

Lastly, i also know how to use Html.ActionLink(..) so I'm not worried about how to use that.

any suggestions?

Unit Testing

I'm also under the impression that i could do a unit test, like the following:- (using MvcFakes)...

// Arrange.
var routes = new RouteCollection();
MvcApplication.RegisterRoutes(routes);  

// Act.
context = new FakeHttpContext("~/?page=2&tags=fooBar");
routeData = routes.GetRouteData(context);

// Assert.
Assert.AreEqual("Home", routeData.Values["controller"]);
Assert.AreEqual("Index", routeData.Values["action"]);
Assert.AreEqual(2, routeData.Values["page"]);
Assert.AreEqual("fooBar", routeData.Values["tags"]);

Update 1

I'm hoping to run all these of the Index action on the default HomeController, if this helps. (in actual fact, I've renamed my HomeController to PostController but that is not really important / shouldn't effect the problem).

share|improve this question
This looks like you are running everything against the Index action on the Home controller. Is this right? – James Ottaway Feb 8 '09 at 22:57
that is correct. that is what i'm wanting. – Pure.Krome Feb 8 '09 at 23:52

1 Answer

up vote 1 down vote accepted

Actually for what you are trying to do you don't need additional route. The default MVC route handles your request well. You just have to keep in mind that controller action parameter names must match your url param names.

URL: http://www.mysite.com/?page=2&tags=fooBar

public ActionResult Index(string page, string tags)
{
   ViewData["Message"] = string.Format("Page={0}, Tags={1}", page, tags);
   return View();
}

Of course thats for Controller "Home" and Action "Index" as defaults. But the point is clear I hope.

Scott Guthrie has excellent post about routing Here

share|improve this answer
So are you suggesting that I use the following route: routes.MapRoute("Home", "", new {controller = "Post", action = "Index"} <-- even though there are no defaults for page and tags? ); – Pure.Krome Feb 9 '09 at 22:48
Oops. typo. controller = "Post" should read: new {controller = "Home"...}. soz. – Pure.Krome Feb 9 '09 at 22:48
routes.MapRoute("Default", "{controller}/{action}/{id}", new { controller = "Home", action = "Index", id = "" }); Yup default one, I've made sample project to try and it worked well. – Paul G. Feb 10 '09 at 11:23
Kewl! you're right!!! i thought that, if i had the method signature=> public ActionResult Index(string page, string tags) then i needed to have page and tags in the MapRoute(..) code, or otherwise it won't be able to find the correct Index method. kewl!!!! – Pure.Krome Feb 10 '09 at 22:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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