Search Results

3
votes

ASP.NET MVC Without Visual Studio

Assuming you have the correct assemblies and a C# compiler you in theory can use whatever you want to edit the code and then just run the compiler by hand or using a build script. That being said i …
1
vote

Adding a parameter to the URL in ASP MVC

Your error sounds like you are not giving a default for action in your route defaults. …
1
vote

Handling complex URLs in ASP MVC

You first need to add the tokens to your routes like {company}/projects/{project}{controller}/{action}/{id}. Then if you wrote your own IControllerFactory then it would be very easy to …
5
votes

How to return an XML string as an action result in MVC

You could use return this.Content(xmlString, "text/xml"); to return a built XML string from an action. …
0
votes

ASP.NET Mvc - System.Web.Compilation.CompilationLock

I ran into this same issue when attempting to unit test a controller factory I wrote. The issue appears to come from the ControllerTypeCache attempting to iterate through all associated ass …
2
votes

Linq, repository pattern and database abstraction problem

In my repositories I have a separate build method that takes in a LINQ to SQL entity and returns a business object. The build method looks something like (this.Container is a Unity IoC cont …