Release and debug question

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Release and debug question

    When you put you code in release, does all the code behind get compiled into
    a dll,

    --

    Dave


    Davef Guest

  2. Similar Questions and Discussions

    1. About to buy FMS soon! - When is release of FMS 3?
      I'm about to buy FMS probably within a week or so. So, when is official release date of FMS 3? :confused; Should I wait for it, or just...
    2. ANN: MP3::Tag new release
      sent to Ilya Zakharevich <nospam-abuse@ilyaz.org>], who wrote in article <c6nt64$sqr$1@agate.berkeley.edu>: v 0.92 released now. The changelog...
    3. Debug ASP.Net / Source Safe Question
      If you have the appropriate permissions, you should be able to use the Attach to Process function to attach to the ASPNET process on the remove...
    4. I can't debug!
      I'm a member of the admin group and debuggers group and I still get an error saying "UNABLE TO DEBUG ON THE WEB SERVER ACCESS IS DENIED" What...
    5. release
      Paul Eggert <eggert@twinsun.com> writes in comp.unix.solaris: |It's apparently tough to convince people to upgrade to Solaris 9. |I guess Solaris 9...
  3. #2

    Default Re: Release and debug question

    Yes. The only difference is that the debugging symbols are not included in
    the release version.

    --
    HTH,

    Kevin Spencer
    Microsoft MVP
    ..Net Developer
    [url]http://www.takempis.com[/url]
    Complex things are made up of
    lots of simple things.

    "Davef" <dave@helixpoint.com> wrote in message
    news:e$39bkdXDHA.652@tk2msftngp13.phx.gbl...
    > When you put you code in release, does all the code behind get compiled
    into
    > a dll,
    >
    > --
    >
    > Dave
    >
    >

    Kevin Spencer Guest

  4. #3

    Default Re: Release and debug question

    Dave,

    I'm no expert and still learning, but I think that debug or release place
    all code behind files and other appropriate items in a dll that goes in your
    bin folder.
    The Aspx files still go to the webserver too.

    The difference being that debug--puts a lot of debug code and symbols in the
    dll and release doesn't
    Debug is good for debugging but with all that extra stuff very bad in
    production.

    Imagine you place a bunch of code in a program that printed all sorts of
    information while you were debugging... This would run slower than if it
    weren't there and you don't need it in a release app.

    The concept is similar although more involved.

    HTH

    Shane

    "Davef" <dave@helixpoint.com> wrote in message
    news:e$39bkdXDHA.652@tk2msftngp13.phx.gbl...
    > When you put you code in release, does all the code behind get compiled
    into
    > a dll,
    >
    > --
    >
    > Dave
    >
    >

    SStory Guest

  5. #4

    Default Re: Release and debug question

    But does it get rid of the code behind?



    "SStory >" <Shane_Story@online.msn.com <remove the 'online.' to send me
    mail> wrote in message news:er12tsdXDHA.2576@TK2MSFTNGP09.phx.gbl...
    > Dave,
    >
    > I'm no expert and still learning, but I think that debug or release place
    > all code behind files and other appropriate items in a dll that goes in
    your
    > bin folder.
    > The Aspx files still go to the webserver too.
    >
    > The difference being that debug--puts a lot of debug code and symbols in
    the
    > dll and release doesn't
    > Debug is good for debugging but with all that extra stuff very bad in
    > production.
    >
    > Imagine you place a bunch of code in a program that printed all sorts of
    > information while you were debugging... This would run slower than if it
    > weren't there and you don't need it in a release app.
    >
    > The concept is similar although more involved.
    >
    > HTH
    >
    > Shane
    >
    > "Davef" <dave@helixpoint.com> wrote in message
    > news:e$39bkdXDHA.652@tk2msftngp13.phx.gbl...
    > > When you put you code in release, does all the code behind get compiled
    > into
    > > a dll,
    > >
    > > --
    > >
    > > Dave
    > >
    > >
    >
    >

    Davef Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139