Changing an ASPX page without recompiling the web app

  • Thread starter Thread starter paul.gibson
  • Start date Start date
P

paul.gibson

I have a released web app where I have found a bug that can be fixed
simply by moving a JavaScript <script> block from the bottom of an ASPX
page to the top. Is it a safe/accepted practice to implement a fix by
replacing the ASPX file with a copy that is identical except for the
physical placement of the <script> in the page source?

The web app is compiled against version 1.1 of the framework and the C#
codebehind files are not deployed with the web app.

TIA
 
If you are not changing the code behind, there is no reason to recompile
your application. Compiling your project only compiles the code behind
files.

So you can update your ASPX page without bothering to recompile and replace
the DLLs.
 
Back
Top