I think that there are something wrong with new RC, when i write
Html.BeginForm("Item", "Newsletter", FormMethod.Post, new { enctype = "multipart/form-data" })
method must render in output something like this:
<form action="/Newsletter/Item" enctype = "multipart/form-data" method="POST"></form>
but instead of that im getting:
<form action="Item" enctype = "multipart/form-data" method="POST"></form>
where my full action path?