0
votes
How do I call a c# windows application from a control?
You could modify your .exe application and add a remoting interface to it, making it a server-process, and then let your "control" act as client-process and call methods on the server.
This …
8
votes
ASP.NET MVC - Current Action
In the RC you can also extract route data like the action method name like this
ViewContext.Controller.ValueProvider["action"].RawValue
ViewContext.Controller.ValueProvider["control …
0
votes
C# MVC: What are the real advantages to using Modelbinders?
Here's another benefit:
You can create modelbinders that retrieves an object from the database just given an ID.
This will allow you to get actions like this
// GET …
