473,385 Members | 1,856 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

ASP timeout issue

I am having a time out issue when multiple users are accessing the server.
This time out does not happen all of the time. My understanding is that the
time out value is actually set in two places. I believe one is in the asp
pages for the session itself, and the other is more of a system timeout
settting in IIS. Would one of these supercede the other if the two are
different?
I have already looked at the time out setting in IIS, and it is set to 900
seconds. However, the actual timeout is happening in much less than 900
seconds, so either the setting on the asp page is controlling this, or the
"900" is not really seconds but some other measure.

Any help would be appreciated.

Thanks,

Ellie
Jul 19 '05 #1
9 2585
Is it a script timeout? A database connection timeout? A database query
timeout? A session timeout? A browser timeout?

Show the actual error message. If it is a database timeout then also
indicate the DBMS you are using.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"E Sullivan" <el************@nospamptd.net> wrote in message
news:OO**************@TK2MSFTNGP09.phx.gbl...
I am having a time out issue when multiple users are accessing the server.
This time out does not happen all of the time. My understanding is that the time out value is actually set in two places. I believe one is in the asp
pages for the session itself, and the other is more of a system timeout
settting in IIS. Would one of these supercede the other if the two are
different?
I have already looked at the time out setting in IIS, and it is set to 900
seconds. However, the actual timeout is happening in much less than 900
seconds, so either the setting on the asp page is controlling this, or the
"900" is not really seconds but some other measure.

Any help would be appreciated.

Thanks,

Ellie

Jul 19 '05 #2
I'm trying to get the answer to all of your questions. In the meantime, do
you know if the IIS setting for a timeout is in seconds, msecs or minutes?

thanks
"Mark Schupp" <ms*****@ielearning.com> wrote in message
news:Oy**************@TK2MSFTNGP11.phx.gbl...
Is it a script timeout? A database connection timeout? A database query
timeout? A session timeout? A browser timeout?

Show the actual error message. If it is a database timeout then also
indicate the DBMS you are using.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"E Sullivan" <el************@nospamptd.net> wrote in message
news:OO**************@TK2MSFTNGP09.phx.gbl...
I am having a time out issue when multiple users are accessing the server. This time out does not happen all of the time. My understanding is that

the
time out value is actually set in two places. I believe one is in the asp pages for the session itself, and the other is more of a system timeout
settting in IIS. Would one of these supercede the other if the two are
different?
I have already looked at the time out setting in IIS, and it is set to 900 seconds. However, the actual timeout is happening in much less than 900
seconds, so either the setting on the asp page is controlling this, or the "900" is not really seconds but some other measure.

Any help would be appreciated.

Thanks,

Ellie


Jul 19 '05 #3
The session timeout is in minutes. The script timeout is in seconds.

Patrice

--

"E Sullivan" <el************@nospamptd.net> a écrit dans le message de
news:O9****************@TK2MSFTNGP11.phx.gbl...
I'm trying to get the answer to all of your questions. In the meantime, do
you know if the IIS setting for a timeout is in seconds, msecs or minutes?

thanks
"Mark Schupp" <ms*****@ielearning.com> wrote in message
news:Oy**************@TK2MSFTNGP11.phx.gbl...
Is it a script timeout? A database connection timeout? A database query
timeout? A session timeout? A browser timeout?

Show the actual error message. If it is a database timeout then also
indicate the DBMS you are using.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"E Sullivan" <el************@nospamptd.net> wrote in message
news:OO**************@TK2MSFTNGP09.phx.gbl...
I am having a time out issue when multiple users are accessing the server. This time out does not happen all of the time. My understanding is that
the
time out value is actually set in two places. I believe one is in the asp pages for the session itself, and the other is more of a system
timeout settting in IIS. Would one of these supercede the other if the two are different?
I have already looked at the time out setting in IIS, and it is set to

900 seconds. However, the actual timeout is happening in much less than 900 seconds, so either the setting on the asp page is controlling this, or the "900" is not really seconds but some other measure.

Any help would be appreciated.

Thanks,

Ellie



Jul 19 '05 #4
Ok, thanks. But what about the IIS itself? Is there a timeout involved there
also for ASP sessions?


"Patrice" <no****@nowhere.com> wrote in message
news:Oa**************@TK2MSFTNGP12.phx.gbl...
The session timeout is in minutes. The script timeout is in seconds.

Patrice

--

"E Sullivan" <el************@nospamptd.net> a écrit dans le message de
news:O9****************@TK2MSFTNGP11.phx.gbl...
I'm trying to get the answer to all of your questions. In the meantime, do
you know if the IIS setting for a timeout is in seconds, msecs or minutes?
thanks
"Mark Schupp" <ms*****@ielearning.com> wrote in message
news:Oy**************@TK2MSFTNGP11.phx.gbl...
Is it a script timeout? A database connection timeout? A database query timeout? A session timeout? A browser timeout?

Show the actual error message. If it is a database timeout then also
indicate the DBMS you are using.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"E Sullivan" <el************@nospamptd.net> wrote in message
news:OO**************@TK2MSFTNGP09.phx.gbl...
> I am having a time out issue when multiple users are accessing the

server.
> This time out does not happen all of the time. My understanding is that the
> time out value is actually set in two places. I believe one is in
the asp
> pages for the session itself, and the other is more of a system timeout > settting in IIS. Would one of these supercede the other if the two are > different?
> I have already looked at the time out setting in IIS, and it is set
to 900
> seconds. However, the actual timeout is happening in much less than 900 > seconds, so either the setting on the asp page is controlling this,

or the
> "900" is not really seconds but some other measure.
>
> Any help would be appreciated.
>
> Thanks,
>
> Ellie
>
>



Jul 19 '05 #5
The duration of an ASP session is the "session timeout" (in minutes) and it
can be set in the IIS manager (and programmaticaly).
The "script timeout" is the amount of time a page runs (server side of
course) before it is stopped (such as caught in a loop or too much data
processed).

It would be easier to give the exact message so that we can understand which
timeout you are talking about...

Patrice

--

"E Sullivan" <el************@nospamptd.net> a écrit dans le message de
news:Ot**************@TK2MSFTNGP12.phx.gbl...
Ok, thanks. But what about the IIS itself? Is there a timeout involved there also for ASP sessions?


"Patrice" <no****@nowhere.com> wrote in message
news:Oa**************@TK2MSFTNGP12.phx.gbl...
The session timeout is in minutes. The script timeout is in seconds.

Patrice

--

"E Sullivan" <el************@nospamptd.net> a écrit dans le message de
news:O9****************@TK2MSFTNGP11.phx.gbl...
I'm trying to get the answer to all of your questions. In the
meantime,
do you know if the IIS setting for a timeout is in seconds, msecs or minutes?
thanks
"Mark Schupp" <ms*****@ielearning.com> wrote in message
news:Oy**************@TK2MSFTNGP11.phx.gbl...
> Is it a script timeout? A database connection timeout? A database query > timeout? A session timeout? A browser timeout?
>
> Show the actual error message. If it is a database timeout then also
> indicate the DBMS you are using.
>
> --
> Mark Schupp
> Head of Development
> Integrity eLearning
> www.ielearning.com
>
>
> "E Sullivan" <el************@nospamptd.net> wrote in message
> news:OO**************@TK2MSFTNGP09.phx.gbl...
> > I am having a time out issue when multiple users are accessing the
server.
> > This time out does not happen all of the time. My understanding
is
that
> the
> > time out value is actually set in two places. I believe one is in the asp
> > pages for the session itself, and the other is more of a system timeout
> > settting in IIS. Would one of these supercede the other if the
two are
> > different?
> > I have already looked at the time out setting in IIS, and it is
set to 900
> > seconds. However, the actual timeout is happening in much less
than 900
> > seconds, so either the setting on the asp page is controlling
this, or the
> > "900" is not really seconds but some other measure.
> >
> > Any help would be appreciated.
> >
> > Thanks,
> >
> > Ellie
> >
> >
>
>



Jul 19 '05 #6
Thanks. You're right about the error message but even after years of working
with programs, my users still don't write them down!!!

"Patrice" <no****@nowhere.com> wrote in message
news:OB**************@TK2MSFTNGP10.phx.gbl...
The duration of an ASP session is the "session timeout" (in minutes) and it can be set in the IIS manager (and programmaticaly).
The "script timeout" is the amount of time a page runs (server side of
course) before it is stopped (such as caught in a loop or too much data
processed).

It would be easier to give the exact message so that we can understand which timeout you are talking about...

Patrice

--

"E Sullivan" <el************@nospamptd.net> a écrit dans le message de
news:Ot**************@TK2MSFTNGP12.phx.gbl...
Ok, thanks. But what about the IIS itself? Is there a timeout involved

there
also for ASP sessions?


"Patrice" <no****@nowhere.com> wrote in message
news:Oa**************@TK2MSFTNGP12.phx.gbl...
The session timeout is in minutes. The script timeout is in seconds.

Patrice

--

"E Sullivan" <el************@nospamptd.net> a écrit dans le message de
news:O9****************@TK2MSFTNGP11.phx.gbl...
> I'm trying to get the answer to all of your questions. In the meantime,
do
> you know if the IIS setting for a timeout is in seconds, msecs or

minutes?
>
> thanks
>
>
> "Mark Schupp" <ms*****@ielearning.com> wrote in message
> news:Oy**************@TK2MSFTNGP11.phx.gbl...
> > Is it a script timeout? A database connection timeout? A database

query
> > timeout? A session timeout? A browser timeout?
> >
> > Show the actual error message. If it is a database timeout then also > > indicate the DBMS you are using.
> >
> > --
> > Mark Schupp
> > Head of Development
> > Integrity eLearning
> > www.ielearning.com
> >
> >
> > "E Sullivan" <el************@nospamptd.net> wrote in message
> > news:OO**************@TK2MSFTNGP09.phx.gbl...
> > > I am having a time out issue when multiple users are accessing the > server.
> > > This time out does not happen all of the time. My understanding is that
> > the
> > > time out value is actually set in two places. I believe one is
in the
> asp
> > > pages for the session itself, and the other is more of a system
timeout
> > > settting in IIS. Would one of these supercede the other if the

two are
> > > different?
> > > I have already looked at the time out setting in IIS, and it is set
to
> 900
> > > seconds. However, the actual timeout is happening in much less

than 900
> > > seconds, so either the setting on the asp page is controlling

this,
or
> the
> > > "900" is not really seconds but some other measure.
> > >
> > > Any help would be appreciated.
> > >
> > > Thanks,
> > >
> > > Ellie
> > >
> > >
> >
> >
>
>



Jul 19 '05 #7
As a side note you could trap most if not all server side error messages.
See http://support.microsoft.com/default...b;EN-US;224070

For example, it could mail you all details about the error (error details
but also request.form, session variables and so on)
Patrice
--

"E Sullivan" <el************@nospamptd.net> a écrit dans le message de
news:%2***************@TK2MSFTNGP11.phx.gbl...
Thanks. You're right about the error message but even after years of working with programs, my users still don't write them down!!!

Jul 19 '05 #8
Here is the exact error message. Seems pretty obvious but if you have
anything to add, let me know.

Thanks:
Active Server Pages error 'ASP 0113'

Script timed out

/deptStats.asp

The maximum amount of time for a script to execute was exceeded. You
can change this limit by specifying a new value for the property
Server.ScriptTimeout or by changing the value in the IIS administration
tools.


Jul 19 '05 #9
E Sullivan wrote:
Here is the exact error message. Seems pretty obvious but if you have
anything to add, let me know.

Thanks:
Active Server Pages error 'ASP 0113'

Script timed out

/deptStats.asp

The maximum amount of time for a script to execute was exceeded. You
can change this limit by specifying a new value for the property
Server.ScriptTimeout or by changing the value in the IIS
administration tools.


The only thing I can add is that you should not willy-nilly increase the
script timeout to a higher value. You should concentrate on discovering why
the page is taking so long to run. This will require some debugging to
determine the precise cause of the timeout.

Bob Barrows
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 19 '05 #10

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

Similar topics

11
by: Rangi Keen | last post by:
I am instantiating an XmlSerializer using the XmlSerializer(Type) constructor. This works most of the time, but sometimes I get a timeout during the process. I'm using the same type in all cases...
8
by: bdeviled | last post by:
I am deploying to a web environment that uses load balancing and to insure that sessions persist across servers, the environment uses SQL to manage sessions. The machine.config file determines how...
0
by: DavidS | last post by:
Have Visual Studio.NET installed on Microsoft 2000 Professional OS. No issue EVER with SQL connections - MDAC components too. Purchased new laptop and have Windows XP Professional SP2 as OS. ...
10
by: greenb | last post by:
Our asp.net web app uses a .NET component (DLL) in the bin directory to call several stored procedures back to back to perform updates. They don't return any data. Sometimes the total execution...
4
by: A.M-SG | last post by:
Hi, How can I increase the HTTP Timeout value at the client side? Thank you, Alan
1
by: Greg Allen | last post by:
I have a timeout issue with a long running web service, and I can't figure out where the timeout value is coming from. In the client I end up getting the following exception: The underlying...
3
by: steph_mw | last post by:
I have a web application and when a user opens the application (using windows integration) and loads some data, it loads a ID number into the session state. If for some reason they go away from...
1
by: msmith | last post by:
MSSQL Server 2000 SP3 in both houston and memphis I have a database in houston, lets call it RED. Specific tables from database RED are copied to database BLUE. Database BLUE is then backed...
1
by: Jake K | last post by:
I have a system timer that elapses every 10 seconds and must execute every ten seconds. Basically every 10 seconds I need to insert into a table. The following code, however, causes a "Timeout...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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...
0
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...

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.