Edit
I noticed that the Object Test Bench is a good example of what I'm looking for, but it doesn't seem to work with ASP.net. I always get an error that an instance could not be created.
Is there a way to test your functions in ASP.net without needing to create a web page and click on a button. For example, if I create a controller that returns a JSON result, I end up having to create a web page, create some javascript to call the method, starting the website and then clicking the button.
What would be really great is to just type the name of the command into the Immediate Window and just provide the parameters at that point to see how they behave, but all my efforts there seem to have a problem by getting messages like The expression cannot be evaluated while in run mode. or whatever (I think there is another message for interactive mode as well).
Are there any tricks to just run a method and see the results without needing to create any UI to make the calls?