473,763 Members | 2,714 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP.NET application and first time load

Hi

I have a "problem"
i have got a ASP.NET application. in this application i have included
logging. in the logging i have logged how many seconds it takes for this
application to fully load.
i have placed these timing loggings in the Load and Init events on a typical
aspx page. i.e. first line of code in Page_Load is
DateTime dtStart = DateTime.Now;
and the last lines of code are
DateTime dtEnd = DateTime.Now;
TimeSpan timeTaken = dtStart - dtEnd;
// log result to log files;
according to my log files, for the first load, it takes 2 seconds for the
application to fully load. every subsequent access to that application takes
1 second or less to fully load. yet, when i manually count the seconds
between clicking "Go" and the time the application is fully loaded, it is
about 17 seconds.

NOTE: the above is a first time load (restarting the web server, or
restarting IIS). every load (from "Go" to "finish") after that, takes 2
seconds or less. Restarting IIS service will then mean the application will,
again, take 17 seconds to load, but only 2 of those seconds are used by the
application.

Are their events i am missing that i should be timing?
is it really IIS that is actually taking up all the time?
what can i do about this first time hit?

Thanks.
Hope i have made sense, if not, lemme know so i can clarify
Jason
Nov 19 '05 #1
11 2364
The first time lag you experience is ASP reloading the worker process for
your application. This includes any recompilations needed. This happens
outside the scopr of the application. So there is a delay, then your app
runs and logs its load time.

MattC
"Jason" <c_*******@migh ty.co.za> wrote in message
news:Of******** *****@TK2MSFTNG P14.phx.gbl...
Hi

I have a "problem"
i have got a ASP.NET application. in this application i have included
logging. in the logging i have logged how many seconds it takes for this
application to fully load.
i have placed these timing loggings in the Load and Init events on a
typical
aspx page. i.e. first line of code in Page_Load is
DateTime dtStart = DateTime.Now;
and the last lines of code are
DateTime dtEnd = DateTime.Now;
TimeSpan timeTaken = dtStart - dtEnd;
// log result to log files;
according to my log files, for the first load, it takes 2 seconds for the
application to fully load. every subsequent access to that application
takes
1 second or less to fully load. yet, when i manually count the seconds
between clicking "Go" and the time the application is fully loaded, it is
about 17 seconds.

NOTE: the above is a first time load (restarting the web server, or
restarting IIS). every load (from "Go" to "finish") after that, takes 2
seconds or less. Restarting IIS service will then mean the application
will,
again, take 17 seconds to load, but only 2 of those seconds are used by
the
application.

Are their events i am missing that i should be timing?
is it really IIS that is actually taking up all the time?
what can i do about this first time hit?

Thanks.
Hope i have made sense, if not, lemme know so i can clarify
Jason

Nov 19 '05 #2
thanks
any documentation where i can read up on these recompilations?

thanks again
any other suggestions?

"MattC" <m@m.com> wrote in message
news:uU******** ******@TK2MSFTN GP12.phx.gbl...
The first time lag you experience is ASP reloading the worker process for
your application. This includes any recompilations needed. This happens
outside the scopr of the application. So there is a delay, then your app
runs and logs its load time.

MattC
"Jason" <c_*******@migh ty.co.za> wrote in message
news:Of******** *****@TK2MSFTNG P14.phx.gbl...
Hi

I have a "problem"
i have got a ASP.NET application. in this application i have included
logging. in the logging i have logged how many seconds it takes for this
application to fully load.
i have placed these timing loggings in the Load and Init events on a
typical
aspx page. i.e. first line of code in Page_Load is
DateTime dtStart = DateTime.Now;
and the last lines of code are
DateTime dtEnd = DateTime.Now;
TimeSpan timeTaken = dtStart - dtEnd;
// log result to log files;
according to my log files, for the first load, it takes 2 seconds for the application to fully load. every subsequent access to that application
takes
1 second or less to fully load. yet, when i manually count the seconds
between clicking "Go" and the time the application is fully loaded, it is about 17 seconds.

NOTE: the above is a first time load (restarting the web server, or
restarting IIS). every load (from "Go" to "finish") after that, takes 2
seconds or less. Restarting IIS service will then mean the application
will,
again, take 17 seconds to load, but only 2 of those seconds are used by
the
application.

Are their events i am missing that i should be timing?
is it really IIS that is actually taking up all the time?
what can i do about this first time hit?

Thanks.
Hope i have made sense, if not, lemme know so i can clarify
Jason


Nov 19 '05 #3
Hey Jason,

The first time a ASP.NET application runs it has to compile the MSIL code
into Native code for execution and then start responding to request made by
the client (browser).
and any other request made after the first one (the one that starts the
application)
the native code is already present with the framework it need not recompile
the MSIL code to native code.
Hence, anytime you access your application for the first time it is much
slower than any subsequent access.

*************** *************** ******
Hope this helps,
Shaun
http://blogs.wwwcoder.com/shaunakp
*************** *************** ******

"Jason" wrote:
Hi

I have a "problem"
i have got a ASP.NET application. in this application i have included
logging. in the logging i have logged how many seconds it takes for this
application to fully load.
i have placed these timing loggings in the Load and Init events on a typical
aspx page. i.e. first line of code in Page_Load is
DateTime dtStart = DateTime.Now;
and the last lines of code are
DateTime dtEnd = DateTime.Now;
TimeSpan timeTaken = dtStart - dtEnd;
// log result to log files;
according to my log files, for the first load, it takes 2 seconds for the
application to fully load. every subsequent access to that application takes
1 second or less to fully load. yet, when i manually count the seconds
between clicking "Go" and the time the application is fully loaded, it is
about 17 seconds.

NOTE: the above is a first time load (restarting the web server, or
restarting IIS). every load (from "Go" to "finish") after that, takes 2
seconds or less. Restarting IIS service will then mean the application will,
again, take 17 seconds to load, but only 2 of those seconds are used by the
application.

Are their events i am missing that i should be timing?
is it really IIS that is actually taking up all the time?
what can i do about this first time hit?

Thanks.
Hope i have made sense, if not, lemme know so i can clarify
Jason

Nov 19 '05 #4
excellent, thanks.
so not much i can do about it?
is there a website i can read regarding this?
"S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
news:AA******** *************** ***********@mic rosoft.com...
Hey Jason,

The first time a ASP.NET application runs it has to compile the MSIL code
into Native code for execution and then start responding to request made by the client (browser).
and any other request made after the first one (the one that starts the
application)
the native code is already present with the framework it need not recompile the MSIL code to native code.
Hence, anytime you access your application for the first time it is much
slower than any subsequent access.

*************** *************** ******
Hope this helps,
Shaun
http://blogs.wwwcoder.com/shaunakp
*************** *************** ******

"Jason" wrote:
Hi

I have a "problem"
i have got a ASP.NET application. in this application i have included
logging. in the logging i have logged how many seconds it takes for this
application to fully load.
i have placed these timing loggings in the Load and Init events on a typical aspx page. i.e. first line of code in Page_Load is
DateTime dtStart = DateTime.Now;
and the last lines of code are
DateTime dtEnd = DateTime.Now;
TimeSpan timeTaken = dtStart - dtEnd;
// log result to log files;
according to my log files, for the first load, it takes 2 seconds for the application to fully load. every subsequent access to that application takes 1 second or less to fully load. yet, when i manually count the seconds
between clicking "Go" and the time the application is fully loaded, it is about 17 seconds.

NOTE: the above is a first time load (restarting the web server, or
restarting IIS). every load (from "Go" to "finish") after that, takes 2
seconds or less. Restarting IIS service will then mean the application will, again, take 17 seconds to load, but only 2 of those seconds are used by the application.

Are their events i am missing that i should be timing?
is it really IIS that is actually taking up all the time?
what can i do about this first time hit?

Thanks.
Hope i have made sense, if not, lemme know so i can clarify
Jason

Nov 19 '05 #5
Hey Jason,

As far as my understanding goes nothing can be done about it , but i fail to
see the problem since this will just happen the very first time the
application is started it wont affect much.

well dont know abt sites, but i am sure this will be documented on MSDN site
, google a bit on this, or have a look at MS Press 70-320

under the section

Chapter 1 : Understanding the .NET Framework -
Lesson 2: Understanding the Common Language
Runtime
*************** ***************
Hope this helps,
Shaun (M.C.P)

http://blogs.wwwcoder.com/shaunakp
*************** ***************

"Jason" wrote:
excellent, thanks.
so not much i can do about it?
is there a website i can read regarding this?
"S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
news:AA******** *************** ***********@mic rosoft.com...
Hey Jason,

The first time a ASP.NET application runs it has to compile the MSIL code
into Native code for execution and then start responding to request made

by
the client (browser).
and any other request made after the first one (the one that starts the
application)
the native code is already present with the framework it need not

recompile
the MSIL code to native code.
Hence, anytime you access your application for the first time it is much
slower than any subsequent access.

*************** *************** ******
Hope this helps,
Shaun
http://blogs.wwwcoder.com/shaunakp
*************** *************** ******

"Jason" wrote:
Hi

I have a "problem"
i have got a ASP.NET application. in this application i have included
logging. in the logging i have logged how many seconds it takes for this
application to fully load.
i have placed these timing loggings in the Load and Init events on a typical aspx page. i.e. first line of code in Page_Load is
DateTime dtStart = DateTime.Now;
and the last lines of code are
DateTime dtEnd = DateTime.Now;
TimeSpan timeTaken = dtStart - dtEnd;
// log result to log files;
according to my log files, for the first load, it takes 2 seconds for the application to fully load. every subsequent access to that application takes 1 second or less to fully load. yet, when i manually count the seconds
between clicking "Go" and the time the application is fully loaded, it is about 17 seconds.

NOTE: the above is a first time load (restarting the web server, or
restarting IIS). every load (from "Go" to "finish") after that, takes 2
seconds or less. Restarting IIS service will then mean the application will, again, take 17 seconds to load, but only 2 of those seconds are used by the application.

Are their events i am missing that i should be timing?
is it really IIS that is actually taking up all the time?
what can i do about this first time hit?

Thanks.
Hope i have made sense, if not, lemme know so i can clarify
Jason


Nov 19 '05 #6
Thanks

I also dont see it as a problem. but clients can be a pain in the butt. and
the customer is always right. sigh
Thanks for the help

"S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
news:B6******** *************** ***********@mic rosoft.com...
Hey Jason,

As far as my understanding goes nothing can be done about it , but i fail to see the problem since this will just happen the very first time the
application is started it wont affect much.

well dont know abt sites, but i am sure this will be documented on MSDN site , google a bit on this, or have a look at MS Press 70-320

under the section

Chapter 1 : Understanding the .NET Framework -
Lesson 2: Understanding the Common Language
Runtime
*************** ***************
Hope this helps,
Shaun (M.C.P)

http://blogs.wwwcoder.com/shaunakp
*************** ***************

"Jason" wrote:
excellent, thanks.
so not much i can do about it?
is there a website i can read regarding this?
"S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
news:AA******** *************** ***********@mic rosoft.com...
Hey Jason,

The first time a ASP.NET application runs it has to compile the MSIL code into Native code for execution and then start responding to request made
by
the client (browser).
and any other request made after the first one (the one that starts
the application)
the native code is already present with the framework it need not

recompile
the MSIL code to native code.
Hence, anytime you access your application for the first time it is much slower than any subsequent access.

*************** *************** ******
Hope this helps,
Shaun
http://blogs.wwwcoder.com/shaunakp
*************** *************** ******

"Jason" wrote:

> Hi
>
> I have a "problem"
> i have got a ASP.NET application. in this application i have included > logging. in the logging i have logged how many seconds it takes for this > application to fully load.
> i have placed these timing loggings in the Load and Init events on a

typical
> aspx page. i.e. first line of code in Page_Load is
> DateTime dtStart = DateTime.Now;
> and the last lines of code are
> DateTime dtEnd = DateTime.Now;
> TimeSpan timeTaken = dtStart - dtEnd;
> // log result to log files;
> according to my log files, for the first load, it takes 2 seconds for the
> application to fully load. every subsequent access to that
application takes
> 1 second or less to fully load. yet, when i manually count the
seconds > between clicking "Go" and the time the application is fully loaded, it is
> about 17 seconds.
>
> NOTE: the above is a first time load (restarting the web server, or
> restarting IIS). every load (from "Go" to "finish") after that,
takes 2 > seconds or less. Restarting IIS service will then mean the

application will,
> again, take 17 seconds to load, but only 2 of those seconds are used
by the
> application.
>
> Are their events i am missing that i should be timing?
> is it really IIS that is actually taking up all the time?
> what can i do about this first time hit?
>
> Thanks.
> Hope i have made sense, if not, lemme know so i can clarify
> Jason
>
>
>


Nov 19 '05 #7
hahaha
Yup , clients are the tough ones to convince :) best of luck in that front

*************** *************** ***
Hope this helps,
Shaun (M.C.P)

http://blogs.wwwcoder.com/shaunakp
*************** *************** ***

"Jason" wrote:
Thanks

I also dont see it as a problem. but clients can be a pain in the butt. and
the customer is always right. sigh
Thanks for the help

"S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
news:B6******** *************** ***********@mic rosoft.com...
Hey Jason,

As far as my understanding goes nothing can be done about it , but i fail

to
see the problem since this will just happen the very first time the
application is started it wont affect much.

well dont know abt sites, but i am sure this will be documented on MSDN

site
, google a bit on this, or have a look at MS Press 70-320

under the section

Chapter 1 : Understanding the .NET Framework -
Lesson 2: Understanding the Common Language
Runtime
*************** ***************
Hope this helps,
Shaun (M.C.P)

http://blogs.wwwcoder.com/shaunakp
*************** ***************

"Jason" wrote:
excellent, thanks.
so not much i can do about it?
is there a website i can read regarding this?
"S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
news:AA******** *************** ***********@mic rosoft.com...
> Hey Jason,
>
> The first time a ASP.NET application runs it has to compile the MSIL code > into Native code for execution and then start responding to request made by
> the client (browser).
> and any other request made after the first one (the one that starts the > application)
> the native code is already present with the framework it need not
recompile
> the MSIL code to native code.
> Hence, anytime you access your application for the first time it is much > slower than any subsequent access.
>
> *************** *************** ******
> Hope this helps,
> Shaun
> http://blogs.wwwcoder.com/shaunakp
> *************** *************** ******
>
> "Jason" wrote:
>
> > Hi
> >
> > I have a "problem"
> > i have got a ASP.NET application. in this application i have included > > logging. in the logging i have logged how many seconds it takes for this > > application to fully load.
> > i have placed these timing loggings in the Load and Init events on a
typical
> > aspx page. i.e. first line of code in Page_Load is
> > DateTime dtStart = DateTime.Now;
> > and the last lines of code are
> > DateTime dtEnd = DateTime.Now;
> > TimeSpan timeTaken = dtStart - dtEnd;
> > // log result to log files;
> > according to my log files, for the first load, it takes 2 seconds for the
> > application to fully load. every subsequent access to that application takes
> > 1 second or less to fully load. yet, when i manually count the seconds > > between clicking "Go" and the time the application is fully loaded, it is
> > about 17 seconds.
> >
> > NOTE: the above is a first time load (restarting the web server, or
> > restarting IIS). every load (from "Go" to "finish") after that, takes 2 > > seconds or less. Restarting IIS service will then mean the application will,
> > again, take 17 seconds to load, but only 2 of those seconds are used by the
> > application.
> >
> > Are their events i am missing that i should be timing?
> > is it really IIS that is actually taking up all the time?
> > what can i do about this first time hit?
> >
> > Thanks.
> > Hope i have made sense, if not, lemme know so i can clarify
> > Jason
> >
> >
> >


Nov 19 '05 #8
luckily we have a windows service supporting the ASP.NET applications. from
there we can do WebClient.OpenR eads to the various pages, effectively
"firing" that compilation.
one more step.

is it possible to determine if the IIS Admin service was just started? are
their events we can subscribe to perhaps??

"S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
news:A6******** *************** ***********@mic rosoft.com...
hahaha
Yup , clients are the tough ones to convince :) best of luck in that front

*************** *************** ***
Hope this helps,
Shaun (M.C.P)

http://blogs.wwwcoder.com/shaunakp
*************** *************** ***

"Jason" wrote:
Thanks

I also dont see it as a problem. but clients can be a pain in the butt. and the customer is always right. sigh
Thanks for the help

"S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
news:B6******** *************** ***********@mic rosoft.com...
Hey Jason,

As far as my understanding goes nothing can be done about it , but i fail
to
see the problem since this will just happen the very first time the
application is started it wont affect much.

well dont know abt sites, but i am sure this will be documented on
MSDN site
, google a bit on this, or have a look at MS Press 70-320

under the section

Chapter 1 : Understanding the .NET Framework -
Lesson 2: Understanding the Common
Language Runtime
*************** ***************
Hope this helps,
Shaun (M.C.P)

http://blogs.wwwcoder.com/shaunakp
*************** ***************

"Jason" wrote:

> excellent, thanks.
> so not much i can do about it?
> is there a website i can read regarding this?
> "S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
> news:AA******** *************** ***********@mic rosoft.com...
> > Hey Jason,
> >
> > The first time a ASP.NET application runs it has to compile the MSIL code
> > into Native code for execution and then start responding to
request made
> by
> > the client (browser).
> > and any other request made after the first one (the one that
starts the
> > application)
> > the native code is already present with the framework it need not
> recompile
> > the MSIL code to native code.
> > Hence, anytime you access your application for the first time it
is much
> > slower than any subsequent access.
> >
> > *************** *************** ******
> > Hope this helps,
> > Shaun
> > http://blogs.wwwcoder.com/shaunakp
> > *************** *************** ******
> >
> > "Jason" wrote:
> >
> > > Hi
> > >
> > > I have a "problem"
> > > i have got a ASP.NET application. in this application i have

included
> > > logging. in the logging i have logged how many seconds it takes
for this
> > > application to fully load.
> > > i have placed these timing loggings in the Load and Init events
on a > typical
> > > aspx page. i.e. first line of code in Page_Load is
> > > DateTime dtStart = DateTime.Now;
> > > and the last lines of code are
> > > DateTime dtEnd = DateTime.Now;
> > > TimeSpan timeTaken = dtStart - dtEnd;
> > > // log result to log files;
> > > according to my log files, for the first load, it takes 2 seconds for
> the
> > > application to fully load. every subsequent access to that

application
> takes
> > > 1 second or less to fully load. yet, when i manually count the

seconds
> > > between clicking "Go" and the time the application is fully
loaded, it
> is
> > > about 17 seconds.
> > >
> > > NOTE: the above is a first time load (restarting the web server,
or > > > restarting IIS). every load (from "Go" to "finish") after that,

takes 2
> > > seconds or less. Restarting IIS service will then mean the

application
> will,
> > > again, take 17 seconds to load, but only 2 of those seconds are

used by
> the
> > > application.
> > >
> > > Are their events i am missing that i should be timing?
> > > is it really IIS that is actually taking up all the time?
> > > what can i do about this first time hit?
> > >
> > > Thanks.
> > > Hope i have made sense, if not, lemme know so i can clarify
> > > Jason
> > >
> > >
> > >
>
>
>


Nov 19 '05 #9
hey
am not understanding the problem exactly could you elaborate on it please
*************** *************** **
Hope this helps,
Shaun (M.C.P)

http://blogs.wwwcoder.com/shaunakp
*************** *************** ***

"Jason" wrote:
luckily we have a windows service supporting the ASP.NET applications. from
there we can do WebClient.OpenR eads to the various pages, effectively
"firing" that compilation.
one more step.

is it possible to determine if the IIS Admin service was just started? are
their events we can subscribe to perhaps??

"S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
news:A6******** *************** ***********@mic rosoft.com...
hahaha
Yup , clients are the tough ones to convince :) best of luck in that front

*************** *************** ***
Hope this helps,
Shaun (M.C.P)

http://blogs.wwwcoder.com/shaunakp
*************** *************** ***

"Jason" wrote:
Thanks

I also dont see it as a problem. but clients can be a pain in the butt. and the customer is always right. sigh
Thanks for the help

"S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
news:B6******** *************** ***********@mic rosoft.com...
> Hey Jason,
>
> As far as my understanding goes nothing can be done about it , but i fail to
> see the problem since this will just happen the very first time the
> application is started it wont affect much.
>
> well dont know abt sites, but i am sure this will be documented on MSDN site
> , google a bit on this, or have a look at MS Press 70-320
>
> under the section
>
> Chapter 1 : Understanding the .NET Framework -
> Lesson 2: Understanding the Common Language > Runtime
>
>
> *************** ***************
> Hope this helps,
> Shaun (M.C.P)
>
> http://blogs.wwwcoder.com/shaunakp
> *************** ***************
>
> "Jason" wrote:
>
> > excellent, thanks.
> > so not much i can do about it?
> > is there a website i can read regarding this?
> > "S h a u n" <Sh***@discussi ons.microsoft.c om> wrote in message
> > news:AA******** *************** ***********@mic rosoft.com...
> > > Hey Jason,
> > >
> > > The first time a ASP.NET application runs it has to compile the MSIL code
> > > into Native code for execution and then start responding to request made
> > by
> > > the client (browser).
> > > and any other request made after the first one (the one that starts the
> > > application)
> > > the native code is already present with the framework it need not
> > recompile
> > > the MSIL code to native code.
> > > Hence, anytime you access your application for the first time it is much
> > > slower than any subsequent access.
> > >
> > > *************** *************** ******
> > > Hope this helps,
> > > Shaun
> > > http://blogs.wwwcoder.com/shaunakp
> > > *************** *************** ******
> > >
> > > "Jason" wrote:
> > >
> > > > Hi
> > > >
> > > > I have a "problem"
> > > > i have got a ASP.NET application. in this application i have
included
> > > > logging. in the logging i have logged how many seconds it takes for this
> > > > application to fully load.
> > > > i have placed these timing loggings in the Load and Init events on a > > typical
> > > > aspx page. i.e. first line of code in Page_Load is
> > > > DateTime dtStart = DateTime.Now;
> > > > and the last lines of code are
> > > > DateTime dtEnd = DateTime.Now;
> > > > TimeSpan timeTaken = dtStart - dtEnd;
> > > > // log result to log files;
> > > > according to my log files, for the first load, it takes 2 seconds for
> > the
> > > > application to fully load. every subsequent access to that
application
> > takes
> > > > 1 second or less to fully load. yet, when i manually count the
seconds
> > > > between clicking "Go" and the time the application is fully loaded, it
> > is
> > > > about 17 seconds.
> > > >
> > > > NOTE: the above is a first time load (restarting the web server, or > > > > restarting IIS). every load (from "Go" to "finish") after that,
takes 2
> > > > seconds or less. Restarting IIS service will then mean the
application
> > will,
> > > > again, take 17 seconds to load, but only 2 of those seconds are used by
> > the
> > > > application.
> > > >
> > > > Are their events i am missing that i should be timing?
> > > > is it really IIS that is actually taking up all the time?
> > > > what can i do about this first time hit?
> > > >
> > > > Thanks.
> > > > Hope i have made sense, if not, lemme know so i can clarify
> > > > Jason
> > > >
> > > >
> > > >
> >
> >
> >


Nov 19 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
20087
by: orekin | last post by:
Hi There I have been trying to come to grips with Application.Run(), Application.Exit() and the Message Pump and I would really appreciate some feedback on the following questions .. There are quite a few words in this post but the questions are actually quite similar and should be fairly quick to answer ... (1) What is Happening with the Threads
5
2309
by: Loane Sharp | last post by:
Hi there I've got a hang of a problem ... I'm running the .NET framework (2.0.40903), SQL Server 2000 and SQL Express 2005 on Windows XP Pro on a pretty good and new IBM Thinkpad X41. Some time ago, following the advice in http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvs05/html/codecompilation.asp, I used aspnet_compiler.exe to compile my application. Soon thereafter, every
6
8580
by: B B | last post by:
Okay, here is what's happening: I have a reasonably fast laptop (1.4 GHz Mobile M, so comparable to 2.5GHz P4) doing .net development. Running Windows XP pro, SP2 IIS is installed and running fine All SQL Servers I am referring to share a small (10 computers or so) LAN with a 100MB Switch. No other computers on the LAN exhibit this problem.
7
6711
by: Ralf Gedrat | last post by:
Hello! I have some Vb.Net applications, which are terminated at indefinite times without message. If I call in the program regulated system.GC.Collect, then the program is terminated here sporadically without message. It's not possible to debug in visual studio, i get no exceptions (application is terminated unexpectedly without message).
4
2211
by: Ravi Ambros Wallau | last post by:
Hi: We developed a set of ASP.NET Web Applications that never runs in stand-alone mode, but always inside a portal (Rainbow Portal). All modules are copied on that portal. My question is: load time takes, sometimes, three or four of minutes in a medium-level machine (a PIII 1.5 Ghz), when the binary contents are changed, or if the time of last modification of the web.config file is changed. An application that runs in "stand-alone" mode...
5
1550
by: Ravi Ambros Wallau | last post by:
Dear friends: This is my third question on this news in three days... Sorry for this spam behavior :-) I've a lot of problems on "first page load" after some change on web.config or even in the contents of bin folder... Nathan Sokalski passed me a link to ILMerge library, I've made some tests grouping a set of DLL's that are loaded without reflection, but there were no improvements on load time. I've noted that ASP.NET copies all...
9
2988
by: jeff | last post by:
Hi All. I realize that when my Deployed winforms application starts, Windows needs to load the .net 2 framework before control is given to my application.... Is there anyway to either ... - preload the .net 2 framework (windows startup or whatever) - splash a screen ... application loading ... please wait ... type of
2
2779
by: jphelan | last post by:
Ever since I successfully applied some techniques for increasing the speed of my 17 meg. Application; it has only made me hunger for more. First, let me list what I have done so far: 1. Split the application and database into front and back-ends, 2. Increased the load-time of my application by "pre-loading my heaviest forms when the database is initially opened, 3. When forms do open, under, "Filter Lookup" I use, "Never", 4. I set...
1
1496
by: davidmurray1 | last post by:
I have a C++ app on my flash drive that i am running, but often times, i must take the flash drive out of the computer and use it elsewhere while the executable continues to run. however, the executable's behavior is sporadic, and it will disappear. I think the app is calling a DLL that exists in the current directory, but since the flash drive is gone, it can't find it. so, i wanted to know if i could load the executable with all of...
0
9563
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9386
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10145
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9998
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9822
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7366
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5406
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3917
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3523
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.