I take my first setup steps with submitting HTML forms using jQuery. Everything works well, but I would like to use T4MVC to create action links.
This works with Html.BeginForm (and Ajax.BeginForm) because they accept an ActionResult as a parameter for generating an action. I.e:
Is there any way to do:
<form method="POST" action="@MVC.???">
I suppose I could do:
@using (Html.BeginForm(MVC.MyArea.MyController.MyAction(),...,new {@id="myForm"})) {
But really wondering if the T4MVC can handle this. I suspect no, but I'm new to this, so maybe I missed something?
(And yes, I know about Ajax.BeginForm, but I'm using the current project to learn more about MVC and jQuery).
source share