I have an application running in C # with .NET 4.5 on IIS 8. To editing a Controller (which is a .cs file). However, I edited some things on this Controller and I saw that these changes were not spreading.
I tried to edit the Action of this Controller, I tried to edit the parameters that this Controller passes to View by a "ViewBag" variable.
No changes have been made, so I just deleted everything I had on the Controller and I still got access to the Actions.
So, is this some cache? Or by what I found searching on Google it "Compiles" my code.
How do I get him to compile again? Or how do I compile it for each change or does it compile by itself every time I access the Controller?
Note: The application is running on an online, non-local server. There I have access to the IIS manager remotely.