Tagged Questions

0
votes
2answers
29 views

MVC posted values

Hi Experts, 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. …
0
votes
2answers
100 views

How to get formcollection using ajax.actionlink

I have a controller with the codes like this: [AcceptVerbs("POST")] public ActionResult Create(FormCollection collection) { //why is that the collection is null? } I am calling this action …
7
votes
4answers
430 views

What is correct behaviour of UpdateModel in ASP.NET MVC?

I am interested to know what you guys feel should be deemed "correct behaviour" in terms of the UpdateModel method in ASP.NET MVC. The reason I ask here is perhaps if this functionality is "by …
1
vote
2answers
280 views

ASP.NET MVC - How can I pass FormCollection data in a post to another Action?

Hi everyone! I have a page "Results" with a form and when "submit" is clicked, the form is submmited to another Action. So far, so good... But, this works fine just if user is logged in. If not, he …