Questions tagged [asp.net-mvc-futures]

The futures project contains features that the ASP.NET MVC team is considering for a future release of ASP.NET MVC.

The futures project contains features that the ASP.NET MVC team is considering for a future release of ASP.NET MVC. Available at http://aspnet.codeplex.com/

35 questions
3
votes
1 answer

Ignoring properties when serializing

I'm pulling my hair out on this one. I am trying to implement a multi-step wizard, and i'm using the Html.Serialize html helper in MVC3 Futures. This works well, except one of the properties in my model is a SelectList. I don't want this…
Erik Funkenbusch
  • 92,674
  • 28
  • 195
  • 291
3
votes
2 answers

Does the DataAnnotations.DisplayAttribute.Order property not work with ASP.NET MVC 2?

I set values for the Order property of the Display attribute in my model metadata. [MetadataType(typeof(OccasionMetadata))] public partial class Occasion { private class OccasionMetadata { [ScaffoldColumn(false)] public…
3
votes
1 answer

Integrating MVC Futures in Spark view engine without killing IntelliSense

I want to add MVC futures to my project and make the assembly available in my Spark views. However it's not accepting it whatsoever. I can use Microsoft.Web.Mvc fine from my classes (controllers/models, etc.), but they're just not showing up in…
Martijn Laarman
  • 13,476
  • 44
  • 63
2
votes
2 answers

MVC Futures strongly typed RenderAction with Areas and duplicate Controller Names

I'm trying to use an Html.RenderAction in a strongly typed nature from the MVC Futures library I have a Navigation action on my primary HomeController (area = "") that I'm trying to call from my Site.Master <%…
Anthony Shaw
  • 8,146
  • 4
  • 44
  • 62
2
votes
0 answers

What happened to RouteCollection.MapAsyncRoute() in MVC Futures?

I am working on upgrading an old project from MVC 1.0 to MVC 3.0 as well as from .NET 3.5 to .NET 4.0. It has not gone very smoothly. My current problem is that I cannot find a replacement for the extension method RouteCollection.MapAsyncRoute()…
Anj
  • 974
  • 2
  • 10
  • 22
2
votes
2 answers

Generate Url during runtime from asp.net mvc controller/action

I have such a url: www.test.com/MyAreaName/MyControllerName/MyAction?key1=value&key2=value I need a method like: string generatedUrlWithQueryParams = Url.Action(x => x.MyAction(MyViewModel)); I need to call the above method from a…
Pascal
  • 12,265
  • 25
  • 103
  • 195
2
votes
1 answer

Pass FormAction in model with MVC Futures

I've a view that is more or less exactly the same for 3 different controllers. The only difference is where they post a form. All those controllers derives from the same base-class and the view contains a form which will post to one of the actions…
smoksnes
  • 10,509
  • 4
  • 49
  • 74
2
votes
1 answer

MVC2 and MVC Futures causing RedirectToAction issues

I've been trying to get the strongly typed version of RedirectToAction from the MVC Futures project to work, but I've been getting no where. Below are the steps I've followed, and the errors I've encountered. Any help is much appreciated. I created…
2
votes
2 answers

Recursive model binding with custom model binder

I am trying to implement wizard functionality in my forms using .NET MVC. I came across a method of achieving this by Darin Dimitrov. Basically he has a wizard view model, which contains a list of ISteps. Each step has it's own properties and…
James Hull
  • 3,669
  • 2
  • 27
  • 36
1
vote
2 answers

Is ASP.NET MVC 1.0 Futures beta/preview code?

I understand that the "1.0" in "ASP.NET MVC 1.0 Futures" means that it is the ASP.NET MVC Futures built against the ASP.NET MVC 1.0 RTW (final/release to web). What I'd like to know is whether the Futures code is solid enough to treat as 1.0 / gold…
Jon Davis
  • 6,562
  • 5
  • 43
  • 60
1
vote
2 answers

ASP.NET MVC Futures 2 and MVCContrib 2 in the same web app / project

I have referenced both Microsoft.Web.Mvc.dll (MVC Futures 2) and MVCContrib.dll (from MVC Contrib 2), both current releases from Codeplex and I have a problem with strongly-typed RedirecToAction<>() function of Controller. It worked fine until I…
mare
  • 13,033
  • 24
  • 102
  • 191
1
vote
1 answer

Mvc Futures Serialization issue: SerializationException: Deserialization failed

I have an asp.net 4.5 application that is a wizard UI that generates a report at the end. I am using the MVC Futures plugin to serialize and pass the model around between forms. I can click all the way through and generate the report. I've also…
0
votes
1 answer

MVC2 Futures conflicting with existing System.Web.Mvc

I downloaded MVC2 Futures and referenced it to my current MVC2 Project. However, if I want to call an HtmlHelper from MVC2 Futures I need to <%@ Import Namespace="Microsoft.Web.Mvc" %> So I decided to add it on my Web.Config:
0
votes
1 answer

S#arp built from the trunk - problem with Microsoft.Web.Mvc

I’m not sure if i’m doing this the right way so i’m reaching out for a little help...there are some new features in the trunk that I want to take advantage of in my current s#arp project. I’ve downloaded the project from the trunk and run the go.bat…
Paul Hinett
  • 1,951
  • 2
  • 26
  • 40
0
votes
4 answers

ASP.NET MVC 2 Futures documentation

Is there any documentation for ASP.NET MVC 2 Futures?
user217137
  • 65
  • 1
  • 1
  • 4