Click here to Skip to main content
15,913,341 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to upgrade a .dll file in vb.net Pin
diya_dev28-Dec-06 19:07
diya_dev28-Dec-06 19:07 
GeneralRe: How to upgrade a .dll file in vb.net Pin
dotnethunk28-Dec-06 19:15
dotnethunk28-Dec-06 19:15 
GeneralRe: How to upgrade a .dll file in vb.net Pin
diya_dev28-Dec-06 21:01
diya_dev28-Dec-06 21:01 
GeneralRe: How to upgrade a .dll file in vb.net Pin
dotnethunk29-Dec-06 2:37
dotnethunk29-Dec-06 2:37 
Questionexternal debugger window Pin
kannan m28-Dec-06 18:55
kannan m28-Dec-06 18:55 
QuestionHow can I find time that it is taking Pin
indian14328-Dec-06 17:45
indian14328-Dec-06 17:45 
AnswerRe: How can I find time that it is taking Pin
Not Active28-Dec-06 18:15
mentorNot Active28-Dec-06 18:15 
AnswerRe: How can I find time that it is taking Pin
Arindam Tewary28-Dec-06 19:09
professionalArindam Tewary28-Dec-06 19:09 
Hi Mate,
Trace is indeed a good option.
Here is another way ...

To examine time taken executing a number of statements:Server Side:
====================================================================
<br />
 StartTime = Environment.TickCount;<br />
 {<br />
    // statement(s) ...... for which execution time to be computed.<br />
 }<br />
 EndTime = Environment.TickCount;<br />
 double executionTime = (double)(EndTime - StartTime) / 1000.0;<br />
<br />
 Response.Write(executionTime.ToString());<br />

if you want to see the execution time of the page .. declare StsteTime and EndTime as global variable.

To examine time taken executing a number of statements:Client Side:
====================================================================


var StartTime,EndTime,ExecutionTime;
var d = new Date();
StartTime = d.getTime();

var d2 = new Date();
EndTime = d2.getTime();

ExecutionTime = EndTime - StartTime;
alert(ExecutionTime);// in milliseconds





Arindam
QuestionBulk insert from asp.net 2005 to oracle Pin
montu337728-Dec-06 16:44
montu337728-Dec-06 16:44 
AnswerRe: Bulk insert from asp.net 2005 to oracle Pin
Vikram kshatriya28-Dec-06 18:25
Vikram kshatriya28-Dec-06 18:25 
GeneralRe: Bulk insert from asp.net 2005 to oracle Pin
Arindam Tewary28-Dec-06 19:20
professionalArindam Tewary28-Dec-06 19:20 
GeneralRe: Bulk insert from asp.net 2005 to oracle Pin
montu33772-Jan-07 6:05
montu33772-Jan-07 6:05 
QuestionADO.net data set or XML file ? Pin
danaliasdan28-Dec-06 12:46
danaliasdan28-Dec-06 12:46 
AnswerRe: ADO.net data set or XML file ? Pin
Not Active28-Dec-06 17:35
mentorNot Active28-Dec-06 17:35 
QuestionButton click's event handler Pin
Tina P28-Dec-06 12:17
Tina P28-Dec-06 12:17 
GeneralRe: Button click's event handler Pin
Venkatesh Mookkan28-Dec-06 16:01
Venkatesh Mookkan28-Dec-06 16:01 
GeneralRe: Button click's event handler [modified] Pin
Tina P29-Dec-06 15:30
Tina P29-Dec-06 15:30 
GeneralRe: Button click's event handler Pin
Venkatesh Mookkan1-Jan-07 17:53
Venkatesh Mookkan1-Jan-07 17:53 
Questionhow to make Menu Item text wrap automatically? Pin
vicky45728-Dec-06 12:05
vicky45728-Dec-06 12:05 
AnswerIs there anyone using Menu in .Net 2.0? Pin
vicky45729-Dec-06 7:03
vicky45729-Dec-06 7:03 
AnswerRe: how to make Menu Item text wrap automatically? Pin
Sandip Kansara2-Jan-07 18:26
Sandip Kansara2-Jan-07 18:26 
GeneralRe: how to make Menu Item text wrap automatically? Pin
vicky4573-Jan-07 9:51
vicky4573-Jan-07 9:51 
QuestionFile Uploads and Wizards Pin
gantww28-Dec-06 10:58
gantww28-Dec-06 10:58 
AnswerRe: File Uploads and Wizards Pin
Sandip Kansara2-Jan-07 19:22
Sandip Kansara2-Jan-07 19:22 
QuestionGetting the value from ascx property to the parent aspx page [modified] Pin
djscratch28-Dec-06 9:38
djscratch28-Dec-06 9:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.