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/
4
votes
1answer
854 views
MVC 4 / Entity Framework 5 / Code First - Persisting a collection (list of objects) in a view - a few questions
My project has several models, some with 1:many relationships with other models. A user has a profile page, this is split up into several partial views - each grouping/representing specific attributes ...
0
votes
1answer
100 views
Html.Deserialize loses TempData after browser refresh
I have a ASP.NET MVC4 wizard. To pass one big viewmodel from step to step I use the futures assembly. I serialize my model with
@Html.Serialize("model", Model, SerializationMode.Signed);
and ...
0
votes
0answers
61 views
ASP.NET MVC3 Futures: Could not load type 'Microsoft.Web.Mvc.EmailAddressAttribute'
Does anyone else who uses Nuget package MVC3 Futures receive this error?
The full error is
Could not load type 'Microsoft.Web.Mvc.EmailAddressAttribute' from assembly 'Microsoft.Web.Mvc, ...
1
vote
1answer
217 views
T4MVC, is it outdated? Still good? If not what else to use?
Folks,
As of today should I introduce T4MVC in my project or use strongly typed goodness from MvcContrib?
return RedirectToAction(MVC.MyController.MyAction());
or
return ...
2
votes
2answers
147 views
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 ...
2
votes
1answer
1k views
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 ...
2
votes
1answer
346 views
MvcContrib vs. MvcFutures
What is the relation between MvcContrib and MvcFutures?
Looks like MvcFutures contains code that will be part of future ASP.NET MVC releases and MvcContrib is less official library which contains ...
2
votes
2answers
983 views
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 ...
5
votes
3answers
11k views
MVC3 ActionLink with images (but without MvcFutures)?
I was wondering if anyone knows if it possible to use any of the "out of the box" ASP.NET MVC3 helpers to generate a "link button"...I currently use following:
<a class="button" title="My Action" ...
0
votes
1answer
235 views
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 ...
2
votes
1answer
228 views
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 ...
3
votes
0answers
1k views
ASP.NET MVC 3 RESTful Routing: RouteData must contain an item named Action?
We are using the ASP.NET MVC Futures project (Microsoft.Web.Mvc) to enable an MVC 3 application to use RESTful routes. This application has been working perfectly under MVC 1 and its related ...
0
votes
1answer
177 views
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 ...
0
votes
4answers
202 views
0
votes
3answers
1k views
How do I install ASP.NET MVC 2 Futures?
I want to use the DataAnnotations.DisplayAttribute.Order property to arrange my fields when using the DisplayForModel and EditorForModel methods.
Related question:
Does the
...
2
votes
2answers
3k views
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
{
...
4
votes
2answers
2k views
ASP.Net MVC Futures Refresh For MVC2
With the release of MVC2, what noteworthy features are included in the refresh of the MVC Futures library?
2
votes
1answer
2k views
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 ...
1
vote
2answers
525 views
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 ...
0
votes
1answer
852 views
Strongly typed Html.ActionLink<T>() helper extension from MVC Futures doesn't do well with areas
I noticed some odd behaviour when using the strongly typed HtmlHelper.ActionLink() extension method from ASP.NET MVC 2 Futures. When I use it to link to a controller in an area I have to use the ...
8
votes
2answers
5k views
ASP.NET MVC RequireHttps
How do I use the ASP.NET MVC 2 Preview 2 Futures RequireHttps attribute?
I want to prevent unsecured HTTP requests from being sent to an action method. I want to automatically redirect to HTTPS.
...
4
votes
1answer
652 views
ASP.NET MVC CookieTempDataProvider.DeserializeTempData returns null
I've been trying to use CookieTempDataProvider to pass a basic message between a post (entity update) and a get (entity list) using the RedirectToAction method. When using the default TempData ...
0
votes
2answers
769 views
ActionLink within RenderAction
I'm using RenderAction to include the output of several "components" in my view. But everytime I use RenderAction calls to ActionLink within the nested action produce wrong routes. (Same for ...
3
votes
1answer
919 views
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 ...
6
votes
2answers
1k views
How to integrate axd (Elmah) as component in ASP.NET MVC site
I have Elmah up and running in my ASP.NET MVC site and I would like to integrate its interface with the administration pages of the site. By default, you invoke the interface with the url ~/elmah.axd, ...
1
vote
5answers
1k views
Would you recommend using the MVC Futures library?
Using magic strings in C# really unsettles me, so I'm thinking of using the MVC Futures library.
Are there any reasons why I might not want to do this, or any gotchas I should be aware of?
1
vote
2answers
141 views
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 ...
26
votes
3answers
8k views
What is the MVC Futures Library?
On Stack Overflow, I've seen a few people referring to the MVC Futures library
What is this project? How do I use it? Where is the documentation?