Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
6k views

@Html.BeginForm Displaying “System.Web.Mvc.Html.MvcForm” on Page

I have a razor view that I added a delete button to inside of a an 'if' statement and when the view is rendered in the browser it is displaying "System.Web.Mvc.Html.MvcForm" next to the delete button. ...
7
votes
1answer
559 views

Create Extension Method to Produce Open & Closing Tags like Html.BeginForm()

I wonder if it's possible to create an extension method which has functionality & behaviour similar to Html.BeginForm(), in that it would generate a complete Html tag, and I could specificy its ...
3
votes
2answers
201 views

ASP.NET MVC 2 - simple increment value in database by submit in view

I'm guessing is very simple, but I'm learning MVC 2 right now and I'm stuck. I've got strongly typed view with some fields and buttons which should change something in database by click on them. So ...
2
votes
2answers
414 views

Using Html.BeginForm with querystring

My url looks like this: customer/login?ReturnUrl=home In the login view, I have used this pattern of code which works fine. @using(Html.BeginForm()) { ... } This magically generates ...
2
votes
2answers
1k views

Html.BeginForm and HTML Attributes w/o specifying Controller and Action

I like the cleanliness of using (Html.BeginForm()) And hate that adding HTML attributes requires specifying the controller, action, and form method. using (Html.BeginForm("Action", "Controller", ...
1
vote
2answers
70 views

Using a link instead of a button in beginform

How do I use a link instead of a button to submit a form in beginform This is what I have, but i dont wanna use a button <% using (Html.BeginForm()) { %> ...
1
vote
1answer
237 views

rolling my own @Html.Beginform()

I am writing a custom validation set that will display all missing elements on a div. I'd like to be able to use a custom @Html.BeginForm() method that will write out that div but I'm really not sure ...
1
vote
1answer
529 views

Why does Html.BeginForm generate empty action?

I have a controller in an area called Admin public class SiteVisitController : Controller { public ViewResult ReadyForCompletion() { ... } public ViewResult CompleteAndExport() { ... } } ...
1
vote
2answers
4k views

Rewriting Html.BeginForm() in MVC 3.0 and keeping unobtrusive javascript

This is going to seem like a bit of a silly endeavor, but it's something I want to learn nonetheless. Right now, in ASP.NET MVC 3.0, you need to use the syntax @using (Html.BeginForm()) { and then ...
1
vote
3answers
189 views

URL parameters not appearing in ASP.MVC when using variant of Html.BeginForm

I've got a view that defines a form as <% using (Html.BeginForm( "Update", "CcisCase", FormMethod.Post, new { id = "ccisEditForm" } )) with a submit button: In the RegisterRoutes method (in ...
1
vote
2answers
358 views

Html.BeginForm in partial for a different controller

I have the following code: <% using (Html.BeginForm("AddComment", "Comments", FormMethod.Post)) { %> <div id="New_Comment"> <textarea name="newComment" id="newComment">Add ...
1
vote
3answers
2k views

ASP.Net MVC Routing issue with Html.BeginForm

Using MVC, I have an html form helper in my view: using (Html.BeginForm("ActionOne", "ControllerOne")) ... Using the default route, the output for the action attribute is as expected: <form ...
1
vote
3answers
472 views

Is Html.BeginForm() necessary?

What does Html.BeginForm() do and is it necessary?
0
votes
1answer
53 views

asp.net MVC3.0 : callbacks for use with HTML.BeginForm

I am using HTML.BeginForm to upload files. This part works fine. However, in addition to uploading files, I would like to populate a field on the same page with the name of the file selected. Is ...
0
votes
1answer
190 views

Html.BeginForm Route Values including Form Radio Button result

I have asked a couple of questions over the last couple of days, that probably did not get answered because it might have been to broad. After some research, I may have narrowed it down a little bit. ...
0
votes
1answer
160 views

Html.BeginForm() does not submit if nothing is selected in a Html.Dropdownlist() helper with optional label

@using (Html.BeginForm("Boxing", "Company",FormMethod.Post)) { <div class="box"> <div> <div class="left"> <div class="topLabel"> ...
0
votes
1answer
205 views

MVC3 BeginForm not rendering <form> tags

I have an issue with my view not rendering the opening and closing FORM tags. Below is the code to my controller [HttpGet, Authorize] public ActionResult Edit(long id) { Position ...
0
votes
1answer
900 views

How do I get the QueryString values into a the RouteValueDictionary using Html.BeginForm()?

I've found that Html.BeginForm() automatically populates the routeValueDictionary with the RawUrl (ie. QueryStringParamters). However I need to specify an HtmlAttribute so I need to use the ...
0
votes
1answer
1k views

Adding dynamic parameters with Html.BeginForm and jQuery submit

// html <% using (Html.BeginForm("MyAction", "MyController", new { id = ViewContext.RouteData.Values["id"] }, FormMethod.Post, new { ...
0
votes
1answer
586 views

Passing values between View and Controller in MVC 2

I'm constantly confused about how to pass values between Views and Controllers in MVC. I know I can set ViewData in the Controller and use that in the View, but what about the other way around? What ...