Performance

muzammil

New member
Joined
Feb 18, 2005
Messages
2
Programming Experience
Beginner
I want to know that what is the performance difference between

1 - DLL files ( Compiled using VB store in \bin )

2 - Code behind File ( aspx.vb )

3 - Using in ASPX Page ( code in aspx page )
 
I believe the answer is : Not a whole lot, 3 would be the fastest however. The reason you'd want your code in a code behind file is it makes your life easier as you don't have to hunt through your aspx page looking for your code or recompile it every time you make a change as you would with a DLL. I would also consider it to be a little bit more secure.

TPM

PS Why don't you test it yourself? Just measure the ticks it takes to compile.
 
oh ya i will check the time they take to compile

by the way i also like the code behind method coz all the functions r in one place

thanks for answer
 
Back
Top