I am using MvcContrib 2.0.95.0 on an MVC2 web. We have created portable areas and are consuming them on a page.
On my viewpage that consumes a widget from my portable area, I have noticed that the BeginForm is routing my posts to my portable area.
using (Html.BeginForm<MyController>(f => f.SomeResult(null), FormMethod.Post){
}
This yields the following route. Note the Custom area in the route:
<form action="/Custom/My/SomeResult" class="observeform" id="SomeForm" method="post">
....
</form>
I placed the string overloaded BeginForm above it, for comparison sake:
using(this.Html.BeginForm("SomeResult", "My"))
{
My portable area does not possess this on controller, so I am confused as to why it would route here.
... and it produced the following correct route:
<form action="/My/SomeResult" method="post">
....
</form>
My portable area contains namespace constraints, whereas my consuming app's routing does not.
Without resorting to string overloads in my links and form creation, how can I prevent my portable area from polluting my consuming app's routing?