Link to home
Start Free TrialLog in
Avatar of RayT
RayTFlag for United States of America

asked on

Taking a ASP.NET Web App Offiline

What is the correct way to take a ASP.NET web application offline?  Is it necessary to take a web application offline to update dlls, etc.?
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

What is the correct way to take a ASP.NET web application offline?
You can temporarily stop your site in IIS.

Is it necessary to take a web application offline to update dlls, etc.?
You can probably take it offline temporary while you updating the dlls or if there's a feature within your web application to show and switch your site to "under maintenance", that could be useful too.
ASKER CERTIFIED SOLUTION
Avatar of Chinmay Patel
Chinmay Patel
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of RayT

ASKER

Thanks to you both!