code-behind not recompiling

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Brett Stinson

    #1

    code-behind not recompiling

    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?
  • Mark

    #2
    Re: code-behind not recompiling

    "Brett Stinson" <bstinson@progr ammer.net> wrote in news:203c01c373 0b
    $8774a930$a6012 80a@phx.gbl:
    [color=blue]
    > 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?
    >[/color]

    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

    Comment

    Working...