views:

207

answers:

4

running asp.net mvc on iis6, do I need to install anything on the server? or can I just drop the .dll's in the /bin (system.web.mvc/routing/etc)

A: 

Should just be able to drop the dlls into the bin. but you do have to do some work within your global.asax file with regards to the rounting to make it work under IIS6.

griegs
+2  A: 

Have a look at this walkthrough and this

Yassir
A: 

Also, I had to wrap all links in Url.Content like below.

<%= Url.Content("~/Scripts/util.js") %>

For IIS 6 to properly parse the paths

Kenoyer130