I have a few C# files that I'd like to modify which are running on a web server on a website.
Of course, If I make changes, and save, the page will return an error because it can not be modified while it is running (compiled).
Maybe there is a away to stop the executing or just compile the class and replace it?
In java for example, if i want to update a class for a web page, I would compile the .java file and then replace the .class one.
I'm not really sure what to do with C# , I'm sure there is something similar.
Thanks for your help.