BeginForm in RC bug?
Posted
by msony
on Stack Overflow
See other posts from Stack Overflow
or by msony
Published on 2009-01-30T10:35:01Z
Indexed on
2010/03/28
1:03 UTC
Read the original article
Hit count: 369
asp.net-mvc
|html
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?
© Stack Overflow or respective owner