 |
| ASP.NET 3.5 Basics If you are new to ASP or ASP.NET programming with version 3.5, this is the forum to begin asking questions. Please also see the Visual Web Developer 2008 forum. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 3.5 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|

September 17th, 2010, 10:09 AM
|
|
Authorized User
|
|
Join Date: Jun 2009
Posts: 87
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
ASP.NET compilation
When i run a asp.net web site. It compiles it in to a dll file.
But where the dll file?
|
|

September 22nd, 2010, 03:12 AM
|
|
Friend of Wrox
|
|
Join Date: Jun 2007
Posts: 477
Thanks: 10
Thanked 19 Times in 18 Posts
|
|
Actually, I don't believe that's correct. The blood and guts are not my strong suit, but while can compile .dlls and add those libraries and namespaces to your website / web app. However, when the website itself is compiled (with all .dlls, plus all the stuff in the App_Code folder, plus... etc., I believe the result is cached in server memory and HTTP requests are served from there.
__________________
-------------------------
Whatever you can do or dream you can, begin it. Boldness has genius, power and magic in it. Begin it now.
-Johann von Goethe
When Two Hearts Race... Both Win.
-Dove Chocolate Wrapper
Chroniclemaster1, Founder of www.EarthChronicle.com
A Growing History of our Planet, by our Planet, for our Planet.
|
|

September 22nd, 2010, 03:32 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
The DLLs are stored in a temporary folder called Temporary ASP.NET Files. Where that folder is located depends on how you compile. When you compile from within Visual Studio you can find it in your user's account AppData\Local\Temp folder.
The easiest way to find out the exaxct location is by doing this:
1. Open your site in Visual Studio
2. Add a funny-named file, such as WeirdName.aspx to your site. This makes it easier to find it later
3. Compile
4. Search your Windows drive for WeirdName.aspx.
You'll find the file, together with some DLLs and other build artifacts and temp files somewhere on your local drive.
Cheers,
Imar
|
|

September 22nd, 2010, 08:49 AM
|
|
Authorized User
|
|
Join Date: Jun 2009
Posts: 87
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
ASP.NET Compilation.
When this .dll file is created?
|
|

September 22nd, 2010, 09:00 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
When the site is compiled. Either explicitly in Visual Studio or on demand with the first request to the site.
Imar
|
|

September 22nd, 2010, 09:13 AM
|
|
Authorized User
|
|
Join Date: Jun 2009
Posts: 87
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
ASP.NET Compilation
When I Build website in VWD then .dll will be created?
|
|

September 22nd, 2010, 09:27 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Quote:
|
When the site is compiled. Either explicitly in Visual Studio
|
So yes....
|
|

September 25th, 2010, 04:59 AM
|
|
Authorized User
|
|
Join Date: Jun 2009
Posts: 87
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
ASP.NET compilation
I read in a book that, there are many procedure to compile an ASP.NET
website. But I don't understand the concept.
|
|

September 25th, 2010, 06:51 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
And? What is it that you're asking? Which book are you referring to? What did it say? What did you, and did you not understand?
Imar
|
|
 |