473,404 Members | 2,187 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

difference between persistet DLL(ASP.NET Temp Files) and Bin Folde

what is the difference between persistet DLL(ASP.NET Temp Files) and one
which is IIS/Webapplication/ BIN Folder.
can anyone tell what exactly happens for the first request for the above
senario.

regards
Satish
Nov 19 '05 #1
4 1446
Satish:
Simply put, files in the /bin folder are those which you precompile and
deploy to your site. They consist of all .cs/vb files, all .resx as well as
any other file you want embedded in the assembly (dll), which you can
control through VS.Net

Files in the temporary directory are compiled by a JIT (just in time)
compiler. In asp.net, they are files ending with an aspx or asax extension
(there are probably a couple more I can't think of right now).

When the first request happens, you already have all your pre-compiled dll's
in the /bin folder so nothing happens to them. However, the JIT compiler
compiles all aspx/asax files and places the resulting DLL in the temporary
folder.

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Satish" <Sa****@discussions.microsoft.com> wrote in message
news:C2**********************************@microsof t.com...
what is the difference between persistet DLL(ASP.NET Temp Files) and one
which is IIS/Webapplication/ BIN Folder.
can anyone tell what exactly happens for the first request for the above
senario.

regards
Satish

Nov 19 '05 #2
Opps..wanted to add that in ASP.net 2.0 you'll have more control over this.
Check out
http://msdn.microsoft.com/library/en...spnet2_topic17
and click on "Compilation Options"

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Satish" <Sa****@discussions.microsoft.com> wrote in message
news:C2**********************************@microsof t.com...
what is the difference between persistet DLL(ASP.NET Temp Files) and one
which is IIS/Webapplication/ BIN Folder.
can anyone tell what exactly happens for the first request for the above
senario.

regards
Satish

Nov 19 '05 #3
actually asp.net copies them to the temp folder, in order to allow updating
the dll's in the bin.

-- bruce (sqlwork.com)
"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:eq****************@TK2MSFTNGP09.phx.gbl...
| Satish:
| Simply put, files in the /bin folder are those which you precompile and
| deploy to your site. They consist of all .cs/vb files, all .resx as well
as
| any other file you want embedded in the assembly (dll), which you can
| control through VS.Net
|
| Files in the temporary directory are compiled by a JIT (just in time)
| compiler. In asp.net, they are files ending with an aspx or asax
extension
| (there are probably a couple more I can't think of right now).
|
| When the first request happens, you already have all your pre-compiled
dll's
| in the /bin folder so nothing happens to them. However, the JIT compiler
| compiles all aspx/asax files and places the resulting DLL in the temporary
| folder.
|
| Karl
|
| --
| MY ASP.Net tutorials
| http://www.openmymind.net/
|
|
| "Satish" <Sa****@discussions.microsoft.com> wrote in message
| news:C2**********************************@microsof t.com...
| > what is the difference between persistet DLL(ASP.NET Temp Files) and one
| > which is IIS/Webapplication/ BIN Folder.
| > can anyone tell what exactly happens for the first request for the above
| > senario.
| >
| > regards
| > Satish
|
|
Nov 19 '05 #4
Thanks for the clarification bruce :)

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"bruce barker" <no***********@safeco.com> wrote in message
news:O1**************@TK2MSFTNGP10.phx.gbl...
actually asp.net copies them to the temp folder, in order to allow updating the dll's in the bin.

-- bruce (sqlwork.com)
"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:eq****************@TK2MSFTNGP09.phx.gbl...
| Satish:
| Simply put, files in the /bin folder are those which you precompile and
| deploy to your site. They consist of all .cs/vb files, all .resx as well as
| any other file you want embedded in the assembly (dll), which you can
| control through VS.Net
|
| Files in the temporary directory are compiled by a JIT (just in time)
| compiler. In asp.net, they are files ending with an aspx or asax
extension
| (there are probably a couple more I can't think of right now).
|
| When the first request happens, you already have all your pre-compiled
dll's
| in the /bin folder so nothing happens to them. However, the JIT compiler | compiles all aspx/asax files and places the resulting DLL in the temporary | folder.
|
| Karl
|
| --
| MY ASP.Net tutorials
| http://www.openmymind.net/
|
|
| "Satish" <Sa****@discussions.microsoft.com> wrote in message
| news:C2**********************************@microsof t.com...
| > what is the difference between persistet DLL(ASP.NET Temp Files) and one | > which is IIS/Webapplication/ BIN Folder.
| > can anyone tell what exactly happens for the first request for the above | > senario.
| >
| > regards
| > Satish
|
|

Nov 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: MAK | last post by:
Hello everyone, I know how to add images and icons etc to dll file. What I would like to know is there is a way to add those icons on the forms during the run time from the dll or to reference it ...
3
by: Sabin | last post by:
How can i create dll files in Python? Is it possible? If yes, how to enclose image and font files in a dll ? Plis reply. SABIN. B'lore.
12
by: Daryl Davis | last post by:
Can I still write dll files in Visual basic.net?
2
by: Ghost Dog | last post by:
After installing the .Net framework (v1.1) I lose the ability to find all DLL files on the C: drive. Show all files is checked, and hide extensions is unchecked in the folder option settings, and I...
7
by: Ivan | last post by:
Hi All, i found that all the referenced DLL files should be in the same folder of the execute file what can i do if i want all referenced DLL files located in a different path to the execute...
10
by: - HAL9000 | last post by:
I am deploying my solution using the Setup Project template to generate a windows installer (msi file). 1) The "Primary output" option in the wizard has generated a dozen or so ..dll files that...
1
by: Mark | last post by:
When you deploy .NET 2.0 web applications, you don't have to deploy pre-compiled .dll files anymore. You deploy ALL the files (.aspx, .aspx.cs, etc) and they are compiled the first time they are...
0
by: burnhead | last post by:
Hi folks, I have a web project which uses dll files (named as "emlakc.dll" and "fbs.dll" ) and i'm not a developer but what I understand from the below error message on my browser is, these files...
0
by: jimmarq | last post by:
I need reporting functionality in my app, but for several reasons, I don't want to have to package any DLL files in a setup. I want to deploy my application straight to a shared network drive with...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.