Tagged Questions

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/

learn more… | top users | synonyms

19
votes
3answers
6k 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?
6
votes
2answers
3k 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. ...
6
votes
1answer
931 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, ...
4
votes
3answers
5k 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" ...
4
votes
1answer
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?
4
votes
1answer
475 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 ...
3
votes
1answer
861 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 ...
2
votes
1answer
155 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 ...
2
votes
1answer
1k 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
1answer
241 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 ...
1
vote
2answers
382 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 ...
1
vote
2answers
2k 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 { ...
1
vote
2answers
461 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 ...
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
137 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 ...
0
votes
0answers
10 views

Dynamic ActionLink in MVC Futures

I am creating a menu that displays items depending on user roles. Ideally I would prefer to use ActionLink extension from MVC Futures, so in a view it would look like this: @foreach (var item in ...
0
votes
0answers
15 views

CookieTempDataProvider, Invalid ModelState and a Redirect

So I just tracked down a problem with an app I'm making and while I am still trying to track down why I have found what I think is the reason and wanted to know if anyone knows of the problem or if ...
0
votes
1answer
134 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 ...
0
votes
0answers
776 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
141 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
3answers
142 views

ASP.NET MVC 2 Futures documentation

Is there any documentation for ASP.NET MVC 2 Futures?
0
votes
3answers
774 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 ...
0
votes
1answer
618 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 ...
0
votes
2answers
597 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 ...