The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

Get Dropdownlist id through formcollection. Not just the string value

Kind of new to this... Tried to find answer... Didnt find... Problem: I want the id of the selecteditem from the formcollection. The format is right in the table and the stored procedure... The ...
0
votes
0answers
42 views

MVC Formcollection resubmit

In my ASP.Net MVC4 project, I have a form in a view and a controller method that handles the submit of the form. In the controller method, I have a formcollection parameter to retrieve the submitted ...
1
vote
1answer
57 views

Retrieving Form collection data from action methods using mvc 2.0

I am developing a sample in asp.net MVC 2.0. In My view (ProductDetails.aspx) I have 3 link buttons which are calling different action methods present in the same controller (ProductController). When ...
0
votes
2answers
78 views

FormCollection Check if Null

In this conditional statement I have tried the last portion in order to try and execute a section of code if my Form Collection is empty. if ((myDT == null) || (myCollection.GetKey(0).ToString() == ...
1
vote
3answers
115 views

c# Form Collection Values to List of Int

I have a Form Collection in my C# MVC4 application. In index[0] of this collection there is a string that will always be formatted like "10=on&13=on&15=on"; the only difference being the ...
2
votes
1answer
68 views

Trying to get my text fields to pass through as a FormCollection upon button press, but FormCollection is coming through as null

I have a View that contains automatically generated input boxes of type text. When I click the "Email Results" button, the code takes you over to the EmailResults Action within the CalculatedResults ...
0
votes
0answers
66 views

Easy way to update data in asp.net mvc with EF 1 using FormCollection

I'm using ASP.net MVC 2 with EF 1.0 for my project. When I try to save data back to my database by using FormCollection, my data is not updated. [HttpPost] public ActionResult Edit(int id, ...
0
votes
1answer
110 views

mvc .net and jquery how do you remove a character before posting to avoid validation?

I have a property on a model that accepts a string value and stores hex values for colors eg: EEEEEE, 000000 I integrated a jquery plugin so that the user can use a color picker. I like it since ...
0
votes
1answer
93 views

The difference between FormCollection.AllKeys and FormCollection.Keys

I'm currently poking around inside the FormCollection in MVC and wondering about the difference in meaning and expected usage between the AllKeys and the Keys properties. I know that AllKeys is a ...
1
vote
1answer
286 views

Formcollection doesn't extract data from form MVC

I have trouble with formcollection. I have some form in view, and two submit buttons both with unique name="". On debug I get on controller in formcollection all data except "name" of submitted ...
1
vote
1answer
486 views

How to add values to Request.Form collection

I need to add values to Request.Form collection, but i don't understand how to initialize HttpRequest instance with specified form values. I tried to override Initialize method in controller and ...
1
vote
1answer
281 views

MVC FormCollection allKeys string [0]

Its my first time here, sorry if I wrote something wrong... I have this HTML code, I need to get all the checkbox in a FormCollection [HttpPost] public ActionResult teste2(FormCollection ...
1
vote
1answer
1k views

Making an async HttpClient post request with data from FormCollection

I am doing an Asp.Net MVC 4 project and am looking to an internal request (like a proxy) to our api service. This is what the index method looks like in my controller. I'm stuck at the PostAsync ...
0
votes
2answers
309 views

All model and Formcollection values are null, blank or don't exist in Firefox or Chrome

During debugging, my MVC model and Formcollection are blank with no values in FireFox (15) or Chrome (latest version). During debugging using IE (9), I can see these values just fine. Do you know ...
0
votes
1answer
150 views

using formcollection to retrieve a string of a repetitive dropdownlist and textfield from mvc3 view

I need help to create and retrieve a repetitive selected dropdownlist values and their corresponding input decimal values from mvc3 view into controller. I have paycat in dropdownlist and a ...
0
votes
2answers
255 views

how to post array of unknown depth/length to c#/mvc

My background is primarily PHP, so i'm used to being able to use deep arrays in forms very easily. What I need is the c#/MVC equivelant of the following: <input type="text" ...
0
votes
1answer
185 views

Passing a custom ViewModel object to an ActionMethod vs passing as FormCollection

Obviously real life applications are a lot more complex but for this example sake lets say I have the following simple view and I need to save the User: @model UserViewModel ...
0
votes
2answers
334 views

Use a dropdownlist to filter results in MVC

I have an MVC web application that returns a table. I want to add a dropdownlist to the view page that filters the table to the selected year. What's the correct approach? I'm currently creating ...
1
vote
1answer
113 views

Why doesn't TryUpdateModel() validate textboxfor or update the model?

I have a view that has several editorfor/textboxfors <% using(Html.BeginForm("New", "Controller", FormMethod.Post)) {%> <%: Html.ValidationSummary(false) %> ...
0
votes
2answers
126 views

Is there an easy way to view the contents of a FormCollection?

When testing/debugging an ASP.NET MVC application, it's common to submit a form and then check all of the name/value pairs to make sure All of the expected keys are present All of the expected keys ...
1
vote
2answers
925 views

AJAX.BeginForm send empty FormCollection list to MVC Controller

i have a very simple code: @using (Ajax.BeginForm("SearchAccount", "Account", new AjaxOptions { UpdateTargetId = "SearchResults", HttpMethod = "Get", InsertionMode = InsertionMode.Replace })) { ...
0
votes
2answers
396 views

mvc3 - overriding formcollection keys

I'm using mvc3 with dynamically created forms, and the default modelBinder is not helping me. I'd like to obtain control over the form collection keys that are associated with control values and ...
1
vote
3answers
593 views

How to get ID of element by using Html.BeginForm()

I have the form and some code below. @using (Html.BeginForm("Insert", "Question", "POST")) { <div id="add_tag"> <div id="list_tag"> <span class="post-tag" ...
2
votes
1answer
998 views

Asp.Net MVC 3 formcollection losing data after submit

I have a Asp.Net MVC 3 app and after I click on my submit button I want to validate the info passed in the formcollection argument.. and if it's not valid I return a jSon.. but after that my ...
2
votes
2answers
266 views

Submit javascript dynamically added elements to controller method like Stackoverflow

Put it simply: I'd like to let the user to select some tags in JS and submit it to my controller. Here are my suggestions: Create a hidden input for every inserted tag with naming convention like: ...
4
votes
1answer
2k views

Get Ids of Checked Checkboxes in MVC3

This is My View: @foreach(var action in Model.Category.Actions) { <div class="action" style="margin-right: 30px;"> <input type="checkbox" class="chk-act" id="@action.Id" name="actionChk" ...
1
vote
1answer
524 views

mvc2 “no parameterless constructor defined for this object” error

I know it has been asked before on many many occassions but I am a bit confused when this happens to me.... I have a view model like this: public class RAssessment { [HiddenInput] ...
0
votes
1answer
357 views

Dynamic Form Building and Passing Query Parameters

I am working on a form that is generated dynamically based on some meta-data tables in my database. I create input tags with names like setting_1, setting_53, setting_22 where the number is the ...
2
votes
2answers
254 views

MVC3 model instead model … can't see when posting to controller

I have an order model (shown below) public class Order { //[Key] [ScaffoldColumn(false)] public int OrderId { get; set; } [DisplayName("Order Date")] ...
0
votes
1answer
4k views

MVC3 - How to bind a FormCollection to a Model when creating a new database object?

when updating ViewModels via [HttpPost] public ActionResult Edit(int id, AddressChooserEnum addressChooser, string btnSubmit, FormCollection fc) { var vm = new AddressViewModel(id, ...
3
votes
2answers
3k views

jquery ajax form collection and other key/value pairs

well since I never got an answer to my question here: checkboxes and radio buttons in MVC FormCollection I thought I'd take a different approach and just find my radio button value client side, and ...
1
vote
2answers
640 views

checkboxes and radio buttons in MVC FormCollection

I did some searching for determining which radio button is selected and if checkboxes are checked or not just using the FormCollection that is being passed to my Action method. For reasons I won't go ...
1
vote
2answers
1k views

ASP.NET MVC FormCollection TextArea

I have a textarea that represents a description field. The descriptions have commas so when trying to split the field's descriptions the data is not parsed correctly. How can I get each row's ...
0
votes
1answer
378 views

asp.net mvc : create listbox using formcollection

I'm experiencing current error in my view: <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" ...
1
vote
2answers
796 views

How to get access to FormCollection, ViewData, and ModelState

Is there any way to get access to the current running request's FormCollection, ViewData, ModelState, etc. when running in an ASP.NET MVC application other than if you are directly working in the ...
1
vote
2answers
3k views

How can i check if FormCollection[“key”] exists

I'm using ASP.NET MVC 3 and I post a form in my view, containing a @Html.ListBoxFor When I receive the posted form as a FormCollection, how can I check if an item was selected in the ListBox? In my ...
2
votes
2answers
2k views

ASP.NET MVC3 fill in form again after post using FormCollection

So what I do is, I have a controller that checks if the input in my form is correct. If it's not, it puts an error message in the ViewBag and returns the view. Like this (unimportant stuff left out): ...
0
votes
2answers
906 views

Display FormCollection with ASP.NET MVC

I have a form using Html.BeginForm() on a view. I have in the controller an ActionResult to handle the post. What I need is to just kick back the results to a view. I can kick off the new view, but I ...
0
votes
2answers
1k views

handle multiple controls with same name in form collection

I have a form in my asp.net mvc(C#) application which handles some dynamic controls. On a button click "Add Row", i will add a row dynamically to the existing table as: ...
0
votes
1answer
1k views

C# ASP.NET MVC Table rows as form values FormCollection

I'm stuck with getting values out of the FormCollection in my controller. The problem is that my form is a table. <% using (Html.BeginForm("PasOverlappendeAfwezighedenAan", "Afwezigheid")) ...
0
votes
2answers
506 views

Custom class for extracting data from the formcollection in a postback in ASP.net MVC

I've been wondering about the possibility of generating a strongly-type object from the formcollection to extract data from it. In other words, is it possible to generate a class depending on the ...
2
votes
1answer
2k views

Upgrading ASP.NET MVC to ASP.NET MVC3 FormCollection seems completely different

Hullo, I am trying to update a website from ASP.NET MVC1 to ASP.NET MVC3 and from VS2008 to VS2010. So far everything seems to be going OK except the class FormCollection seems to be completely ...
0
votes
3answers
1k views

Fetching attribute values from FormCollection in Asp.net MVC

My application writes custom attributes to input controls using Helper classes. And also we are loading the UserControl dynamically so we need to use FormCollection to get the posted values. Is there ...
2
votes
2answers
237 views

Getting values from the html to the controller

I'm trying to access the values a user introduces in a table from my controller. This table is NOT part of the model, and the view source code is something like: <table id="tableSeriales" ...
6
votes
1answer
5k views

Getting all selected checkboxes from a FormCollection

I have a form which contains a whole bunch of checkboxes and some other types of control too. I need to retrieve the names of each selected checkbox. What is the best way to do this? Can I do it with ...
1
vote
2answers
873 views

Understanding FormCollection.AllKeys.Contains

I'm looking at a code block and can't grok what's happening with the line - formValues.AllKeys.Contains("Email_" + i); it looks like an assignment should be taking place but... public ...
2
votes
2answers
487 views

ASP.NET MVC2 - Trim of whitespace on all fields in a model?

I have data coming in and out of an ASP.NET MVC2 Controller/View set-up. Unfortunety, all data that comes from the view has MASSIVE amounts of whitespace at the end. I'm using the TryUpdateModel to ...
1
vote
2answers
544 views

MVC2 FormCollection options

I'm just getting started with MVC2 and going through the NerdDinner examples. I noticed that there seems to be multiple ways to pass in the form values for example: FormColelction formvalues ...
2
votes
2answers
1k views

How can a formcollection be enumerated in ASP.NET MVC2

I was previously using http://stackoverflow.com/questions/762825/how-can-a-formcollection-be-enumerated-in-asp-net-mvc 's implementation but now I'm on VS2010 and MVC2 its complaining: Error 1 ...
0
votes
1answer
1k views

Retrieving postback from Dynamically created controls in MVC without using FormCollection

I'm passing a List to an MVC view and generating checkboxes for each object in the list (The checkboxes are named t.Name). I'd like to be able to tell which checkboxes were checked once the form is ...

1 2