Calling procedure - time

CookieMonster24

Freshman
Joined
May 4, 2003
Messages
45
i have a procedure where i'm displaying the data that is about to be saved. however, when it is called the first time, there is a long waiting time. however, the second time it's called, there is no waiting time. is this normal? if not, any suggestions on how to fix it
 
That is normal becuase .Net applications compile as they run, so that function wasn't compiled until the first time you used it. .Net apps compile as they run because it allows you're program to bond to the hardware of any computer (Windows only at the moment) and run as efficently as possible
 
Back
Top