|
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
|