1
vote
4answers
113 views

ASP.NET MVC form sumits to index instead to submitting to the right action

I crated a form that is to be used as a partial view. I placed a breakpoint at the 'Save' action, and when I click the submit button, it validates the data, but never reaches the action, instead the ...
0
votes
0answers
60 views

MVC Controller data html.form

I have a view with a bunch of tabs holding editable information. Each tab has a "store" button, upon pressing this the data from this tab is pushed to a static instance of an intermediate object. ...
0
votes
1answer
130 views

Refactoring HTML Markup from POST to GET

I have the following mark up in an ASP.NET MVC view (this is a Twitter Bootstrap search box): <form action="@Url.Action("Results", "Search")" method="post"> <input type="text" ...
0
votes
3answers
481 views

Template for display fields in two columns instead of one columns in MVC 3 Razor

The Details template of MVC 3 returned a view use <fieldset> to display elements that represent all fields in one column. But I need to show elements or fields of a model in two or more ...
4
votes
3answers
348 views

html.beginform v old skool form tag

What is the benefit to using Html.BeginForm? We're having some issues related to html helpers and razor generator view testing and I'm struggling to see the benefit which would stop us going back to ...
0
votes
1answer
484 views

jqGrid: pass selected IDs as HTML form parameters

I have an HTML form (Razor) with jqGrid to select entities (please assume customers, for example). The customers jqGrid looks like: jQuery("#ajaxGrid").jqGrid({ url: ...
0
votes
1answer
177 views

Generating URL through routing, using ID from a form field (ASP.NET MVC)

Say I want to display user details like so: http://www.mysite.com/user/1 I set a route up like so: routes.MapRoute("UserDetails", "user/"{id}", new { controller = "User", action = "Details" }); ...
2
votes
2answers
789 views

how to handle multiple forms on one page?

On one page i have list of questions with diffrent tipe of answers. (texboxes, checkboxes etc) Page is dynamicly generated. I have to store answers in database. What is the best way to do this? ...
0
votes
2answers
1k views

How can I set a tabindex in a foreach loop in an ASP.NET MVC view?

How can I set the tabindex value of a set of checkboxes within a foreach loop in ASP.NET MVC? My current solution uses a Response.Write to output the checkboxes, but I'd rather find something more ...
1
vote
8answers
435 views

Asp.Net MVC: Forms being block elements

Basically, having multiple forms in a row isn't possible so far as I've seen. LastUpdate Given the situation with phones and the unpredictable nature of how most the browsers render the ...
12
votes
1answer
4k views

ASP.NET MVC: Best way to get form checkboxes into many-to-many DB assoc table with LINQ To SQL?

I have an ASP.NET MVC view which contains checkboxes for user-defined categories. <td><% foreach (Category c in (List<Category>)ViewData["cats"]) { if ...