Reputation: 2427
My website is a "website" type, not a "web application" type.
Upvotes: 0
Views: 4381
Reputation: 23268
Technically there is no native code because when a web site is built using asp.net it gets run through the JIT so it creates these temporary files, I don't think you'll find dll's or exe's if that's what you're looking for.
Upvotes: 2
Reputation: 19365
By default they are located in %Windows Install Folder%\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files
It's possible to force the temp path to a specific location by a property to the compilation tag in the web.config.
<compilation tempDirectory=“E:\ASP.Net Temporary Folder\” debug=“false“>
Source: http://syedgakbar.wordpress.com/2007/11/10/changing-aspnet-temporary-files-folder/ for more.
Upvotes: 3
Reputation: 2801
Your files will be at the end of this path somewhere. You may need to choose a different .NET version. In the temporary files folder you will find a gfolder for your project/solution.
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files
Upvotes: 1