When I update an ASPX page with simple text change, it reponds very slowly the next time i call the page from the web. I'm running on windows 7, with IIS7. It seems to me that the page has to recomplile the next time i call it from the browser. any help?
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
|
A ASP.Net page consits of thre parts:
You need to manually recompile depending on which part you change. The code behind and designer part needs to be compiled. You can change the code before part and it will manually recompile (but only the code before). You should use resx files if you are just changeing text. They can be used by resourcekeys or in your code behind. Changeing a resx does not slow down your app. Edit: Disable recompilation - you need to edit web.config:
|
|||||
|
|
This is a normal function of Asp.net. Once an ASPX file changes, the application is recompiled the next time the web server gets a request. |
|||
|