code-behind not recompiling

  • Thread starter Thread starter Brett Stinson
  • Start date Start date
B

Brett Stinson

All:
I seem to have an issue where when I xcopy the files
from my dev box to the server, the code-behind files are
not getting re-compiled when I have made changes. I am
able to make changes in the .aspx file, but the .aspx.vb
file changes never show up. Has anyone else ever run
into this problem?
 
All:
I seem to have an issue where when I xcopy the files
from my dev box to the server, the code-behind files are
not getting re-compiled when I have made changes. I am
able to make changes in the .aspx file, but the .aspx.vb
file changes never show up. Has anyone else ever run
into this problem?

Codebehinds don't recompile automatically, unless the <%@Page directive
gives a Src="" instead of a Codebehind="". Note that VS.NET can't edit
dynamically-recompiled codebehinds. Recompile your project in VS.NET, then
copy the whole thing over (or just the bin\???.dll if only the aspx.vb
changed)

Mark
 
Back
Top