Tagged Questions
FubuMVC is an open source Front Controller-style MVC framework designed primarily for Web applications built on ASP.NET.
17
votes
4answers
5k views
What are the main differences between ASP.NET MVC and FubuMVC?
A developer I know just showed me FubuMVC and there was some question whether or not we should attempt to use it on a real live project or not. The current design choice so far has been ASP.NET MVC.
...
4
votes
1answer
132 views
fubumvc - rendering a collection as a drop down list
I'm having trouble understanding how to render a collection as a drop down list.
If I have a model like:
public class AccountViewModel {
public string[] Country { get; set; }
}
I ...
4
votes
3answers
822 views
Thunderdome MVC- Why one-model-in in MVC?
When Jeremy & Chad posted about their FubuMvc project, one of the differentiators they mentioned was their "Thunderdome Principal":
The “Thunderdome Principle” – All
Controller methods take ...
3
votes
1answer
258 views
How to set up FubuMVC validation
I'm trying to learn FubuMVC and have gotten stuck on validating my input models.
What I want to accomplish is post-validate-redirect. That is, to redirect to same view and show the errors if the model ...
3
votes
4answers
119 views
Using Funcs instead of instances in frameworks
When looking at the source code of a couple of projects I found a pattern I can not quite understand.
For instance in FubuMVC and Common Service Locator a Func is used when a static provider is ...
3
votes
3answers
908 views
thunderdome action invoker asp.net mvc
I know basic idea of thunderdome principle (one object enters, one object leaves) but I didn't see any real world example of it in asp.net mvc.
Is it good example of thunderdome principle
public ...
3
votes
2answers
205 views
Tweaking asp.net mvc
I really love the "one model in - one model out" idea of Fubu MVC. A controller would look something like this
public class MyController
{
public OutputModel MyAction(InputModel ...
2
votes
2answers
135 views
How do I configure Fubu for a view without a controller?
I have an Index action on a controller that's not doing anything.
public EmptyModel Index()
{
return null;
}
The Index view simply displays some html, with jQuery-driven ajax and the ...
2
votes
1answer
202 views
What is the proper way to register a display model and FubuControl?
Recently, I've begun updating a FubuMVC project from a pre-May/June 2010 version of the FubuMVC framework to the most recent version.
One of the biggest stumbling blocks I'm running into is how to ...
2
votes
1answer
180 views
How do I create an exception-wrapping fubumvc behaviour?
How can I create a fubumvc behaviour that wraps actions with a particular return type, and if an exception occurs while executing the action, then the behaviour logs the exception and populates some ...
2
votes
1answer
263 views
Why is FubuMVC new()ing up my view model in PartialForEach?
I'm getting started with FubuMVC and I have a simple Customer -> Order relationship I'm trying to display using nested partials. My domain objects are as follows:
public class Customer
{
private ...
2
votes
1answer
77 views
How do I get FubuMVC to work on WinXP with IIS 5.1?
How do I get FubuMVC to work on WinXP with IIS 5.1?
2
votes
1answer
596 views
What's the best way to create a paging gridview-style partial view in Asp.net MVC?
In the current MVC project I'm working on, I need to be able to create something exactly like the GridView from asp.net webforms. I'm actually using FubuMVC, but I can adapt any Asp.net MVC solution ...
1
vote
1answer
38 views
FubuMvc: If I move my controller and views into a folder I get a 404
I'm new to FubuMvc and I'm just playing around with it on a small project.
I have the default nuget package fubu configuration, and I'm using web forms view engine:
public ConfigureFubuMVC()
...
1
vote
1answer
106 views
fubumvc - simple forms validation using IFailureValidationPolicy
I've been trying to implement form validation correctly and a discussion on fubu mailing list has been the most helpful ...
1
vote
2answers
124 views
How to create nested <ul> <li> tags with HtmlTags (FubuMVC)
I have no previous experience with FubuMVC HtmlTags library, and I simply got stuck when trying to accomplish a simple nested structure like this:
<ul>
<li>text</li>
...
1
vote
1answer
126 views
How do I find the output model type in a behavior?
With FubuMVC, I'm not sure what the best way is to determine the current action's output model type. I see different objects that I could get the current request's URL from. But that doesn't lead to ...
1
vote
1answer
127 views
How do you create a FubuMVC behavior that copies site configuration values to an output model?
I'm trying to figure out to create a behavior that will copy a boolean site configuration value to an output model.
This way I don't have to copy the bool in each action who's view requires it, but ...
1
vote
1answer
88 views
FubuMVC: How to I create a zero-model out action on my controller?
In FubuMVC, when I want a controller action method to return a json result, I use the JsonEndpoint attribute on the method. However there is not a corresponding attribute for a void method that I can ...
1
vote
0answers
121 views
How to run a Silverlight xap with fubumvc
Probably the answer is simple and maybe someone wants to hit me, but obviously I'm stuck right now.
I want to integrate a Silverlight XAP into a fubumvc view page. I am using the HelloWorld sample ...
1
vote
1answer
113 views
Service Locator not set in fubuMVC HelloWorld sample
recently I downloaded the latest sources from fubumvc. I startet the "HelloWorld" sample for a little warm up.
Unfortunately everytime a NullReferenceException is thrown by the ServiceLocator in the ...
1
vote
1answer
650 views
How do you make a Ninject Provider when the constructor of type is not known?
I decided to try to conjure up a container assembly to interact with
FubuMVC. Well the cool part is that it pass all the test that the
FubuMVC.Container.StructureMap assembly does. However, when I ...
0
votes
0answers
135 views
OpenRasta, MonoRail, FubuMVC, ASP.NET MVC what to choose? [closed]
I need to start a new Web Project. Previously I worked with WebForms but I do not like it.
I made some research but I am still unsure what to choose from OpenRasta, MonoRail, FubuMVC, ASP.NET MVC.
...
0
votes
0answers
92 views
How to make Asp.Net ignore my physical directory?
I'm creating my first FubuMVC application. I've got a physical folder Demo and a route that should handle the "/demo" url. For some reason, when I try to debug it in Visual Studio, it issues a ...
0
votes
2answers
396 views
FubuMVC and OpenRasta documentation and resource
im looking at using FuBuMVC or OpenRasta frameworks for the up coming projects we have here. Without getting into much details on the nature of the project I would like some opinions on the ...