Where are my asp.net website compiled assembly files stored on my computer?
My website is a "website" type, not a "web appl开发者_JAVA技巧ication" type.
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.
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.
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
精彩评论