up vote 6 down vote favorite
3
share [g+] share [fb]

I have a form on one of my ASP.Net MVC views that I created using the following code

 <% using (Html.BeginForm(null, null, FormMethod.Post))

Using this code I have no control as far as I am aware of setting the name of the form. I'm now trying to write a javascript function to submit the form, is this possible without knowing the forms name?

Thanks

link|improve this question

feedback

6 Answers

up vote 14 down vote accepted

You can use jquery to submit the form:

<% using (Html.BeginForm(null, null, FormMethod.Post, new { id = "myForm"})) { %>

(the last part is for htmlAttributes parameter)

just do this:

$("#myForm").submit();

and do not forget to include jquery-1.2.6.js that comes with mvc (or use a higher version).

link|improve this answer
I love how easy MVC makes things like this. – Bennor McCarthy Sep 21 '10 at 0:39
Either you have a bracket out of place or things have changed a bit since 2009! This is what worked for me using the Razor syntax: @using (Html.BeginForm(null, null, FormMethod.Post, new { id = "form"})) [Edit: Just noticed ajbeaven pointed this out in another answer] – Code Monkey Sep 5 '11 at 18:38
feedback

The accepted answer is slightly wrong. The bracket shouldn't be closed before the html parameters

<% using (Html.BeginForm(null, null, FormMethod.Post, new { id="myForm"})) { %>
    //code here
<% } %>

and then:

$("#myForm").submit();
link|improve this answer
feedback

If you want to use jQuery without naming the form, and you will only have one form on the page, you can just add a link like this to your page:

<a href="#" class="submitForm">Submit</a>

And then add this jQuery which will wire up the link to submit every form:

$(document).ready(function () {
    $("a.submitForm").click(function () {
        $("form").submit();
    });
});

So this is a way of doing it (the way I just did it on my site) that doesn't require you to name the form - provided you only have one. Saying that, you may want to submit multiple forms ..

link|improve this answer
feedback

If you have only one form on that page, you can access the form by using:

document.forms[0].

So you could add a link:

<a href="javascript:document.forms[0].submit()">submit form</a>
link|improve this answer
feedback

If you need to set name of the form, use object htmlAttributes parameter of BeginForm method.

<% using 
  (Html.BeginForm(null, null, FormMethod.Post,
     new {name="MySuperForm"})) %>

For submitting forms through javascript, check out this post. Might be useful.

link|improve this answer
feedback

This simple solution submit the Ajax form without post-back

<a href="#" onclick="$('#sbmt').trigger('click'); return false">Generate</a>
<input id="sbmt" type="submit" style="visibility: hidden" />

Works in IE and Firefox.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.