Tagged Questions
2
votes
2answers
381 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
209 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
1answer
597 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
vote
1answer
777 views
Converting formCollection array to objects in the controller
in my view I have several [n].propertyName array fields I want to turn the formCollection fields into objects myobject[n].propertyName when it goes to the controller.
so for example, the context:
...
0
votes
1answer
411 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
0answers
616 views
asp.net mvc 3 with ajax.beginform and Formcollection not work
Controller:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult SetPowerFlow(FormCollection collection)
{
string result = string.Empty;
if (Request.IsAjaxRequest())
{
result = ...
0
votes
3answers
398 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 ...
0
votes
2answers
194 views
MVC posted values
In asp.net MVC application we have mechanism where, when we submit
a form and if there is any problem with the values (validation fails),
the form is displayed back maintaining old values. How does it ...