Routing without a controller and action name
Posted
by Eden
on Stack Overflow
See other posts from Stack Overflow
or by Eden
Published on 2010-03-16T09:53:09Z
Indexed on
2010/03/16
9:56 UTC
Read the original article
Hit count: 320
asp.net-mvc
|routing
Hi,
I've a very basic ASP.NET MVC application that uses the default routing. Now I need to route all the requests that comes with out a specific URL to one action with a single parameter. Examples: www.myapp.com/2374982 www.myapp.com/3242342
should be routed to the same action: public ActionResult ViewById(intid) ....
Thanks, Eden
© Stack Overflow or respective owner