Can anyone please tell me the difference between IIS Server and Development server provided by Visual Studio.

link|improve this question

64% accept rate
Anything specific you have in mind? – Oded Nov 4 '10 at 10:53
feedback

3 Answers

up vote 3 down vote accepted

Here is a few links to read up on :-)

Core Differences Between IIS and the ASP.NET Development Server

ASP.NET Development Server or Localhost IIS?

What are the (dis)advantages of using Cassini instead of IIS?

I don't know why your looking into this but you might want to take a look at IIS Express - Introducing IIS Express

link|improve this answer
feedback

Cassini can only be accessed from localhost which makes it a very bad candidate for production.

You can find more by googling 'Cassini vs IIS'

link|improve this answer
Thanks, I didn't know the name of the development server. So it's Cassini :) – Deviprasad Das Nov 4 '10 at 11:11
feedback

There are MANY differences, some of them:

  1. Local access in Cassini
  2. Cassini does not support S
  3. Cassini runs as your account (whoever is logged on), IIS runs as a service which means some things change quite a bit
  4. Does not support authentication methods like Basic, Digest, etc.
  5. Does not run any of the IIS Modules, which means you will not be able to do things like URL Rewrite, Default Documents, Directory Browsing, Custom Errors for static pages, etc
  6. Does not support things like Virtual Directories, etc.

What I would recommend for anyone wanting something as simple as Cassini, yet more compatible is to use IIS Express which supports almost all features from IIS yet with a much simplified model suited for development http://weblogs.asp.net/scottgu/archive/2010/06/28/introducing-iis-express.aspx. Visual Studio will include support for it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.