Updating a .NET web DLL

  • Thread starter Thread starter Dia
  • Start date Start date
D

Dia

How can you update a .NET web application DLL on the server without
making sure all users are out of the database which the DLL accesses?
Does updating the DLL when users are using it cause any data
corruption if they are in mid-save when the update occurs?

Thanks,
Dia
 
Dia,

Any changes to the web.config, global.asax, or /bin folder will cause an
application restart. If this will cause a problem with users, you need to
develop a system/producedure to shut down the website to perform the update,
and notify users of the shutdown well in advance.

-- Alex Papadimoulis
 

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