Tagged Questions

5
votes
1answer
161 views

Does MVC Contrib fulfill its promise of increasing productivity in ASP.NET MVC

I am knee deep in starting a new ASP.NET MVC project. Several tutorials have recommended the use of MVC Contrib. I wanted to get the opinion of the Stack Overflow community if it fulfilled its promise …
5
votes
3answers
721 views

Use MVCContrib grid for editing

I just started using the MVCContrib grid in a test project. I'm having a difficult time finding information on how to use it for edit/update/delete. Can anyone point me to information on how to put a …
3
votes
5answers
285 views

ASP.NET MVC partial views: input name prefixes

Suppose I have ViewModel like public class AnotherViewModel { public string Name { get; set; } } public class MyViewModel { public string Name { get; set; } public AnotherViewModel Child { …
3
votes
2answers
231 views

ASP.NET MVC - Returning data as HTML or XML

When requesting http://someserver.com/user/btyndall I'd like to return HTML When requesting http://someserver.com/user/btyndall?format=xml I'd like to return XML representation of my model I've …
3
votes
2answers
410 views

MVCContrib grid and posting back with model binder

The contents of my MVCContrib grid come from the Model on a strongly typed View. When a post is made, the contents of the grid are not in the model object when it returns to the controller. I can see …
2
votes
4answers
307 views

Create select list with first option text with mvccontrib?

Trying to create a select list with a first option text set to an empty string. As a data source I have a List of a GenericKeyValue class with properties "Key" & "Value". My current code is as …
2
votes
2answers
198 views

Unit testing MVC routes that POST

I have 2 routes registered as follows: routes.MapRoute("GetAnEmail", "{controller}", new { controller = "Home", action = "GetAnEmail" }, new { httpMethod = new HttpMethodConstraint("POST") }) …
1
vote
1answer
26 views

Using Spring.Net to inject dependencies into ASP.NET MVC ActionFilters

I'm using MvcContrib to do my Spring.Net ASP.Net MVC controller dependency injection. My dependencies are not being injected into my CustomAttribute action filter. How to I get my dependencies into …
1
vote
2answers
41 views

What happened to MVCContrib Subcontrollers

I see several articles on the interwebs about MVCContrib's subcontroller feature, but I don't see anything on the codeplex site about it. Has this feature been supplanted by something in MVC2? …
1
vote
2answers
68 views

MVCContrib, Html.Grid: How can I attach a row-based id to a td tag?

Here's my current view code: <% Html.Grid((List<ColumnDefinition>)ViewData["Parameters"]) .Columns(column => { column.For(c => c.ID); column.For(c => c.Name); …
1
vote
2answers
82 views

How can I make Input Builders (MVC Contrib) work with Spark View Engine?

Today I spent a good three hours trying to convert the project MvcContrib.Samples.InputBuilders, included in MVC Contrib to make it work with Spark View Engine, but so far was unable to do so. Does …
1
vote
1answer
65 views

How to add a custom column to a MvcContrib Grid ?

I don't find a method to add a custom column in a MvcContrib Grid. With the old version you could do : column.For("Edit").Do(p => { %> <td> <a href="/People/Edit/<%= p.Id …
1
vote
1answer
185 views

How to do pagination and filtering in MVC applications

I am having the same problem as this post but the answer does not work.... No overload for method 'Pager' takes '4' arguments Am I using old MVCContrib or the answer is deprecated? my code looks …
1
vote
2answers
187 views

ASP.NET MVC - Html.ActionLink<T>(expression)

Is something like Url.Action<TController>(...) or Html.ActionLink<TController>(...) in MvcContrib? I see the FluentHtml stuff for forms, but I don't see the same concept applied to urls. …
1
vote
1answer
394 views

Test ASP.NET MVC routes using MVC Contrib

I'm trying to set up Route mapping tests using MVC Contrib as described in Test ASP.NET MVC routes using MVC Contrib The tests compile and execute, but they always fail with the message "The URL did …

1 2 3 next
15 30 50 per page