ASP.NET and own web server in vs.net 2005

  • Thread starter Thread starter Sara T.
  • Start date Start date
S

Sara T.

Oh!

From the VS.NET 2005, I see it has own web server. That needn't to use IIS,
that's right?

And when I test with VS.NET web server, how can I gaurantee it will be OK
when running on actual IIS.
 
Hi Sara,

Yes, that's right. VS.NET 2005 includes a personal web server for
development purposes. In theory, it should be the same as IIS, because both
use the ASP.NET binaries to process .aspx files.

However, you should definitely test your application on IIS before deploying
it live, because IIS has a different security and process identity model
(using application pools, NETWORK SERVICE account, etc.).
 
As Josh adviced thats true its like WebMatrix.
But make sure you test using IIS before deploying
Patrick
 
Yes, that's right. VS.NET 2005 includes a personal web server for
development purposes. In theory, it should be the same as IIS, because
both use the ASP.NET binaries to process .aspx files.

Isn't it just Cassini in disguise...?
However, you should definitely test your application on IIS before
deploying it live, because IIS has a different security and process
identity model (using application pools, NETWORK SERVICE account, etc.).

Absolutely!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top