Go Back   Velocity Reviews > Newsgroups > ASP Net
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

ASP Net - Script Timer

 
Thread Tools Search this Thread
Old 12-26-2003, 04:25 AM   #1
Default Script Timer


I need to time the execution time of a script and
output the exe time as a string.

can someone help me write this function in csharp


time1 //at the beginning of the script

..
..
..

time2 //at the end of the script
string exeTime = time2 - time1


thanks


Aaron
  Reply With Quote
Old 12-26-2003, 05:23 AM   #2
Carl Prothman [MVP]
 
Posts: n/a
Default Re: Script Timer
Aaron wrote:
> I need to time the execution time of a script and
> output the exe time as a string.
> can someone help me write this function in csharp
>


Aaron,
You can use the following:
DateTime dt1 = DateTime.Now;
MakeACall();
DateTime dt2 = DateTime.Now;
TimeSpan ts = dt2 - dt1;
string diff = ts.ToString();

You can also use Microsoft Enterprise Instrumentation framework (EIF)
http://msdn.microsoft.com/vstudio/pr...nterprise/eif/

--

Thanks,
Carl Prothman
Microsoft ASP.NET MVP

Hire top-notch developers at
http://www.able-consulting.com




Carl Prothman [MVP]
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Cancelling Timer and TimerTask threads wfalby Software 1 04-30-2009 01:04 PM
Manual/QTP/Software Testing/Testing tools Project training for Rs.1000 by Real Timer priyanka.madhu97 Software 0 12-30-2008 01:47 AM
help with master page and java script alain23 Software 0 09-20-2007 06:02 AM
thomson dth 8005 Timer problem Rainer Willis DVD Video 0 08-14-2007 07:34 PM
NVTMR SPRM (Navigational Timer System Parameter) in DVD spec - do set top players support it? Leviathan DVD Video 0 08-09-2003 03:21 AM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46