0
votes
1answer
91 views
Best Practices for Images in a Model with Castle ActiveRecord/MonoRail
Our "user" model needs a small profile picture on it, and I'm not entirely sure how to handle it. Of course we could just save it to a folder on disk and store the path/filename t …
0
votes
1answer
33 views
castle monorails no simultaneous requests from the same user
I have created an website in Castle Monorails and the users that are using the site are complaining that it is very slow so I have done some investigations with fiddler and I disco …
0
votes
1answer
19 views
Mapping Castle MonoRail default requests to a controller action
Hi,
I'm running a MonoRail application that has no routing configured. So I'm using MRs standard Area/Controller/Action.aspx scheme.
(I changed the MonoRail handler to listen for …
1
vote
5answers
127 views
Asp.Net Mvc 2 reusable parts?
Hi there:
I wonder, is there an equivalent of the Monorail View components for Asp.Net MVC?
What I m trying to do is render some complex UI that depends on a class, so say we are …
0
votes
1answer
16 views
Binding Monorail RadioFields to GenericLists
I have the following object which I bind to a Form in my view:
public class Foo
{
public List<Bar> Items { get; set; }
}
public class Bar
{
public List<string& …
1
vote
1answer
167 views
How to get Castle MonoRail’s DataBinder/SmartDispatcherController to bind against types containing properties that are interfaces?
We're using interfaces to represent entity classes in our domain model. We have concrete implementations of these by virtue of using LinqToSql. We have added a factory method to …
4
votes
5answers
762 views
From Monorail to ASP.Net MVC
The last time I took on a non-trivial .Net/C# application I used Castle Monorail and, on the whole, enjoyed the experience. Early-access/preview releases of .Net MVC were not yet a …
0
votes
2answers
156 views
Get HttpContext from JQuery AJAX GET
Hello...
My project is using Castle Monorail as a MVC framework. The problem is that Monorail requires that all controllers have a view template. I am trying to get a string back …
1
vote
1answer
51 views
Ajax Call to Monorail Controller JQuery
I could really use an example of this. Can anyone provide me with a sample implementation of a Javascript function using JQuery (not totally necessary) to make a Castle Monorail ca …
0
votes
1answer
56 views
Strongly type returned JSON using MonoRail
Hi
I am calling the following method in my controller using $.getJSON()
[return: JSONReturnBinder]
public object ProfileFields()
{
var userfields = _profileSvc.GetFields( …
1
vote
7answers
344 views
Alternative to query string and cookies when sending data to server?
I have a small (or perhaps not so small) issue with some ASP.NET/Castle Monorail sites for a product I work on. This is a fairly legacy system (written well before my time), and it …
1
vote
0answers
85 views
Problems with repository pattern reuse and query support
Guys,
I've been reading both ddd and PoEAA books, and searching a lot on the web but i'm still confused and i think there is something i'm missing about the repository pattern:
C …
0
votes
1answer
51 views
Are there alternative ways to register helpers with controllers in MonoRail?
In MonoRail controllers can be adorned with the Helper attribute to make helpers available in views. Is there another way to register helpers, perhaps via configuration file or dep …
1
vote
1answer
87 views
Using Castle Windsor to inject IRailsEngineContext
Issue
I am using Castle Windsor as an IoC container in a Castle Monorail project. I would like to inject the current instance of IRailsEngineContext into an object being resolved …
0
votes
1answer
136 views
asp .net mvc and castle mono rail about upload multiple files
Hello, im trying to upload multiple files using castle mono rail with framework 2.0
I did my controller for that but just for 1 file. When i try to re write for multiple files usin …
