Tagged Questions

0
votes
0answers
53 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
186 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 …
2
votes
4answers
1k 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 …
1
vote
1answer
106 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 …
0
votes
2answers
1k views

ASP.NET MVC & Ajax Control Toolkit

Hi, 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 …
3
votes
4answers
468 views

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

Hi, 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 …
2
votes
5answers
903 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 …
3
votes
3answers
705 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 …