I`ve already implemented runtime controllers using monos compiler as a service some months ago.
You can find the infos and link to the code on github here: http://blog.fusonic.net/2011/04/scripting-asp-net-mvc-controllers-at-runtime/
Although it looks really nice at the beginning, it is not that super useful in the real-world because of several limitations.
First of all Visual Studio stands in the middle of you and your code because it strictly locks and forbids changing source code while debugging. So the only way to edit your source-files is by running without a debugger attached.
Second problem is that it is (obviously) limited to controllers. As soon as you start editing your controllers at runtime, you want a real scripting environment! For example to change your Models, and Services and whatever code you have in your project at runtime.
Then you have the problem that you can`t debug your dynamic code and so on ...
I have stopped using it after some days because it is just not a complete solution.
I`m dreaming of a solution for .net where the whole mvc-project can be dynamically compiled at runtime, not limited to controllers (like a real scripting framework) and including debugging.
In the java-world there is a solution for this: http://zeroturnaround.com/jrebel/