Hi,
I have an action like this:
public class News : System.Web.Mvc.Controller
{
public ActionResult Archive(int year)
{
/ *** /
}
}
With a route like this:
routes.MapRoute(
"News-Archive",
"News.mvc/Archive/{year}",
new { controller = "News", action = "Archive" }
);
The URL that I am on is:
News.mvc/Archive/2008
I have a form on this page like this:
<form>
<select name="year">
<option value="2007">2007</option>
</select>
</form>
Submitting the form should go to News.mvc/Archive/2007 if '2007' is selected in the form.
This requires the form 'action' attribute to be "News.mvc/Archive".
However, if I declare a form like this:
<form method="get" action="<%=Url.RouteUrl("News-Archive")%>">
it renders as:
<form method="get" action="/News.mvc/Archive/2008">
Can someone please let me know what I'm missing :-)