What are the files in folder Temporary ASP.NET Files

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

    What are the files in folder Temporary ASP.NET Files

    I found some files under:
    C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \Temporary ASP.NET Files\...my
    solution\..

    Do you know what they are:


  • =?Utf-8?B?ZG90TmV0RGF2ZQ==?=

    #2
    RE: What are the files in folder Temporary ASP.NET Files

    Easy, they are the compiled (machine code) of your asp.net files like ASPX,
    ASMX etc. Why ASP.NET is so fast is because all server files are compiled! So
    the cool things is that you can still modify just the ASPX file, move it to
    the server, and the next time it's called, it will be compiled and served up
    to the user.

    But durrting development, you might run into version issues. To fix it,
    simply go to your projects temporary directory and delete all the files.

    Very cool!

    David

    =============== =============== ========
    David McCarter [Microsoft MVP]

    David McCarter''''s .NET Coding Standards available at:



    "AAaron123" wrote:
    I found some files under:
    C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \Temporary ASP.NET Files\...my
    solution\..
    >
    Do you know what they are:
    >
    >
    >

    Comment

    • AAaron123

      #3
      Re: What are the files in folder Temporary ASP.NET Files

      I see that most of the stuff in the folder below relates to dead projects
      and tests.
      I'm only working on one solution.
      A couple of items in there I don't recognize so I wonder:
      Can I safely delete everything in the folder?

      It will just get recompiled if it is needed, Right?

      C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \Temporary ASP.NET Files\

      Thanks

      "dotNetDave " <dotNetDave@dis cussions.micros oft.comwrote in message
      news:CE1E50AF-CC78-48E8-86B4-69E6E5D26FB9@mi crosoft.com...
      Easy, they are the compiled (machine code) of your asp.net files like
      ASPX,
      ASMX etc. Why ASP.NET is so fast is because all server files are compiled!
      So
      the cool things is that you can still modify just the ASPX file, move it
      to
      the server, and the next time it's called, it will be compiled and served
      up
      to the user.
      >
      But durrting development, you might run into version issues. To fix it,
      simply go to your projects temporary directory and delete all the files.
      >
      Very cool!
      >
      David
      >
      =============== =============== ========
      David McCarter [Microsoft MVP]

      David McCarter''''s .NET Coding Standards available at:

      >
      >
      "AAaron123" wrote:
      >
      >I found some files under:
      >C:\WINDOWS\Mic rosoft.NET\Fram ework\v2.0.5072 7\Temporary ASP.NET
      >Files\...my
      >solution\..
      >>
      >Do you know what they are:
      >>
      >>
      >>

      Comment

      • Mark Rae [MVP]

        #4
        Re: What are the files in folder Temporary ASP.NET Files

        "AAaron123" <aaaron123@road runner.comwrote in message
        news:Ooa9vDsPJH A.764@TK2MSFTNG P05.phx.gbl...
        Can I safely delete everything in the folder?
        Yes.


        --
        Mark Rae
        ASP.NET MVP


        Comment

        • AAaron123

          #5
          Re: What are the files in folder Temporary ASP.NET Files

          Thank you

          "Mark Rae [MVP]" <mark@markNOSPA Mrae.netwrote in message
          news:Or7aoksPJH A.4848@TK2MSFTN GP03.phx.gbl...
          "AAaron123" <aaaron123@road runner.comwrote in message
          news:Ooa9vDsPJH A.764@TK2MSFTNG P05.phx.gbl...
          >
          >Can I safely delete everything in the folder?
          >
          Yes.
          >
          >
          --
          Mark Rae
          ASP.NET MVP
          http://www.markrae.net

          Comment

          Working...