View Single Post

  #4 (permalink)  
Old 04-28-2006, 08:02 PM
cbdarts cbdarts is offline
Member
 
Join Date: Apr 2006
Posts: 85
cbdarts is an unknown quantity at this point
I believe you must be using the Inline coding method, zubairsmd.

Inline coding does not create a DLL, it is re-compiled every time it is executed (except for the code buffering thing, which lasts about 20 mins - which means it runs really well after its accessed once, but if there are 20 mins between uses its much slower than the DLL)

Creating a DLL using the code-behind technique is slow to code in but its way faster than inline code during execution. Besides it secures your sensitive code as well.

I recommend using the DLL option if speed is a problem.

Chaitanya
Reply With Quote