Tagged Questions

0
votes
4answers
86 views

ASP.net MVC - How to persist model over various views.

Situation: In some project management software written in asp.net I have a create project page (working fine). I need to add to this the ability to add tasks from a list of templa …
0
votes
1answer
28 views

Using MVC Contrib FluentHtml in Views

If I understand things correctly, to use MVC Contrib's FluentHtml in my Views, I need to change my Views to inherit from MvcContrib.FluentHtml.ModelViewPage instead of System.Web.M …
0
votes
1answer
14 views

How to set Foreign Key object using Entity Framework and FluentHtml

What I'm looking to do is set a Foreign Key object in an EF entity via FluentHtml. I have an entity of Foo with a reference to the object Bar via Foo.Bar. What I am trying to do is …
0
votes
2answers
72 views

DRY in the MVC View

I've been working a lot with asp.net web forms and one think that I like about the is the consistency with the generated markup e.g. if you create a composite control for a TextFie …
0
votes
1answer
43 views

Sorting with MVCContrib

Does anyone know how to sort the MVCContrib grid when using a complex object. My grid is displaying a list of Person and I'm trying to sort on the Country property. The problem is …
3
votes
5answers
160 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 Anothe …
5
votes
1answer
129 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 f …
0
votes
1answer
43 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/Ed …
1
vote
1answer
151 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 …
0
votes
1answer
29 views

MvcContrib GridModel : Is it possible to do ActionSyntax in a GridModel

I have a code in my aspx file which uses ActionSyntax, and i want to use a GridModel instead, but i don't know how to do that. Here is a sample of my aspx file : <% Html.Grid( …
2
votes
4answers
250 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 …
1
vote
2answers
154 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 conce …
0
votes
1answer
175 views

Using Request.Files.Count with TestControllerBuilder from MvcContrib?

I have a controller action in ASP.NET MVC that handles uploaded files. However, it seems there is no way to call Request.Files.Count while using MvcContrib's TestControllerBuilder. …
3
votes
2answers
183 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 …
1
vote
1answer
345 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 …

1 2 next
15 30 50 per page