-
Dear Mike In The Future, If it's been a while since setting up a MonoRail app from ground up, please remember to reference the following assemblies in your web project or at least include them in the /lib folder: Castle.Components.Common.EmailSender Castle.Components.Common.TemplateEngine Castle...
-
On my current app we are using ajax heavily for updating forms, often with the response getting injected into an table or unordered list . The entire form is then posted for the action which will actually change state in the domain. For example, say we have a 'NewItem' form (and have several...
-
A while ago I posted on the very basics about using Monorail on IIS7. Implementing the routing module requires a bit more tuning though so I wanted to quickly post my configuration and some things to look for if you are having difficulty getting routing going on Monorail . This is mostly to help those...
-
When using the FormHelper.FormTag(...) in Monorail you can simply do something like this: <?brail output Form.FormTag({@action: "edit" }) ?> This will render something like this: <form id= "form1" action= "edit.rails" [other attributes]> Usually I am diligent...