Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
877 views

ASP.NET MVC Upgrade to Beta: IControllerFactory is defined in an assembly that is not referenced

I'm currently in the process of updating a site from preview 2 of ASP.NET MVC to the Beta release. I'm down to my last compile error with no solution in site after an exhaustive search. I have some ...
3
votes
2answers
850 views

ASP.NET MVC Beta 1 - Does It Support Strongly Typed View Data?

In previous releases there were 3 ways to pass data from controller to view AFAIK (shown below). I want to use method (2) with MVC Beta 1, but I can't find the renderView method. So what's the new ...
2
votes
2answers
2k views

Asp.net MVC Module binding with validation for Complex Types

I'm building a questionnaire app in asp.net mvc, and I'm having trouble with the module binder for a list of complex types. First: I can't get ...
2
votes
5answers
2k views

MVC Beta [HandleError] Attribute (need help)

I've tried this both with and without the 'ExceptionType' parameter. I have an Error.aspx page in both the Views/Shared folder and the Views/thisController folder. But everytime I run this I get a ...
1
vote
1answer
171 views

MVC Routing - what number of routes will start to cause performance issues?

I am considering pre-loading routes to static content pages, allowing for n-depth nesting of content. I have a solution spiked that provides a bit of comfort in terms of the number of potential routes ...
1
vote
3answers
5k views

Html.RadioButton sets all values to selected value

After tinkering around to solve [this][1] problem, I think the core of the problem is the following: When you use the Html.RadioButton() html helper with an Enum as value field, you can only choose ...
0
votes
1answer
126 views

Testing in ASP.net MVC Beta 1

I'm wring a unit test for a controller and here is my code. public void DocumentController_IndexMethod_ShouldReturn_Documents() { DocumentsController c = new ...
0
votes
4answers
299 views

Bad idea to alter asp.net mvc framework autogenerated database?

Is it a bad idea (and if why?) to add a a column to the auto generated asp.net (ASPNETDB.MDF, visual studio 2008, mvc framework) "user roles - database"? (E.g I want to add the columns RealName and ...
0
votes
4answers
6k views

ASP.NET MVC & Ajax Control Toolkit

I'm trying to get my head around MVC + AJAX etc. One of the things I like about coding "old skool" (web forms) is the AJAX Control Toolkit. I saw on the Microsoft Storefront video 14, Rob Conery ...