473,388 Members | 1,382 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,388 software developers and data experts.

Why is the progress bar there ?

PW

I have an ASP which is a form (get), and whenever I run it, even though its
just sitting there waiting for input, the progress bar at the bottom of the
page starts slowly climbing up. Why is it doing that ?

TIA,
PW

Jun 10 '06 #1
6 1328
PW wrote on 10 jun 2006 in microsoft.public.inetserver.asp.general:
I have an ASP which is a form (get), and whenever I run it, even
though its just sitting there waiting for input, the progress bar at
the bottom of the page starts slowly climbing up. Why is it doing
that ?


"an ASP" ?

ASP is a serverside platform for coding in computer languages
like vbs or js and doesn't even know browsers exist.

You will have to ask in a clientside NG.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jun 10 '06 #2

Evertjan. wrote:
PW wrote on 10 jun 2006 in microsoft.public.inetserver.asp.general:
I have an ASP which is a form (get), and whenever I run it, even
though its just sitting there waiting for input, the progress bar at
the bottom of the page starts slowly climbing up. Why is it doing
that ?
"an ASP" ?


Yeah - an Active Server Page :)
ASP is a serverside platform for coding in computer languages
like vbs or js and doesn't even know browsers exist.

You will have to ask in a clientside NG.


OTOH, he may have Response.Buffer = False or a Response.Flush and some
asp code still running in a loop. Without showing us any code, it's
all a guess at the moment.

--
Mike Brind

Jun 10 '06 #3
PW


Heres the whole page ... TIA, PW.


<!-- #include file=aaa_Settings.asp -->

<html>
<head>
<script language="JavaScript" src="scripts\datetimepicker.js"></script>
</head>

<body bgcolor="<%=Session("SystemColourBgStd")%>">

<!-- #include file=aaa_Heading.asp -->

<b>Enter the full details, then press the Ok button</b>
<p>

<form ID="myform" NAME="myform" method="GET" action="AddTask2.asp">

<table width=100% bgcolor="<%=Session("SystemColourBgStd")%>"
style="font-size:<%=Session("SystemFontSizeStd")%>;color:<%=Se ssion("SystemFontColourStd")%>;font-family:<%=Session("SystemFontFaceStd")%>">

<tr>
<td>
<b>
Date:
</b>
</td>
<td>
<%
myDate = day(Date()) & "-" & month(Date()) & "-" & year(Date())
%>
<input type="Text" id="txtDateFrom" name="txtCommDate"
value="<%=myDate%>" maxlength="10" size="10"><a
href="javascript:NewCal('txtDateFrom','ddmmyyyy',f alse,24)"><img
src="treeview/treeicons/icons/ocalendar.gif" border="0" alt="Pick a
date"></a>
</td>
</tr>

<tr>
<td>
<b>
<%
if Session("SystemActivity1") = "" then
response.write "Activity 1:"
else
response.write Session("SystemActivity1") & ":"
end if
%>
</b>
</td>
<td>
<%
mySQL = "Select Activity from Activity1 where ActiveFlag = TRUE order
by Activity"
rs5.open mySQL,myDSN
%>
<select name="lbActivity1" size="1">
<option></option>
<%
Do While Not rs5.EOF
response.write "<option>"
response.write rs5("Activity")
response.write "</option>"
rs5.MoveNext
Loop
%>
</select>
<%
rs5.Close
Set rs5 = Nothing
%>
</td>
</tr>

<tr>
<td>
<b>
<%
if Session("SystemActivity2") = "" then
response.write "Activity 2:"
else
response.write Session("SystemActivity2") & ":"
end if
%>
</b>
</td>
<td>
<%
mySQL = "Select Activity from Activity2 where ActiveFlag = TRUE order
by Activity"
rs3.open mySQL,myDSN
%>
<select name="lbActivity2" size="1">
<option></option>
<%
Do While Not rs3.EOF
response.write "<option>"
response.write rs3("Activity")
response.write "</option>"
rs3.MoveNext
Loop
%>
</select>
<%
rs3.Close
Set rs3 = Nothing
%>
</td>
</tr>

<tr>
<td>
<b>
<%
if Session("SystemActivity3") = "" then
response.write "Activity 3:"
else
response.write Session("SystemActivity3") & ":"
end if
%>
</b>
</td>
<td>
<%
mySQL = "Select Activity from Activity3 where ActiveFlag = TRUE order
by Activity"
rs2.open mySQL,myDSN
%>
<select name="lbActivity3" size="1">
<option></option>
<%
Do While Not rs2.EOF
response.write "<option>"
response.write rs2("Activity")
response.write "</option>"
rs2.MoveNext
Loop
%>
</select>
<%
rs2.Close
Set rs2 = Nothing
%>
</td>
</tr>

<tr>
<td>
<b>
<%
if Session("SystemActivity4") = "" then
response.write "Activity 4:"
else
response.write Session("SystemActivity4") & ":"
end if
%>
</b>
</td>
<td>
<%
mySQL = "Select Activity from Activity4 where ActiveFlag = TRUE order
by Activity"
rs6.open mySQL,myDSN
%>
<select name="lbActivity4" size="1">
<option></option>
<%
Do While Not rs6.EOF
response.write "<option>"
response.write rs6("Activity")
response.write "</option>"
rs6.MoveNext
Loop
response.write "</select>"
rs6.Close
Set rs6 = Nothing
%>
</td>
</tr>

<tr>
<td>
<b>
Hours:
</b>
</td>
<td>
<input type=text name="txtHours" size=10>
</td>
</tr>

<tr>
<td valign=top>
<b>
Description:
</b>
</td>
<td>
<textarea rows="5" cols="50" Name="txtDescription"></textarea>
</td>
</tr>

</table>

<!-- #include file=inc_Buttons.asp -->

</form>

</body>
</html>
Jun 10 '06 #4

PW wrote:
Heres the whole page ... TIA, PW.

<!-- #include file=aaa_Settings.asp -->

<html>
<head>
<script language="JavaScript" src="scripts\datetimepicker.js"></script>
</head>


You need to start tasking things out one by one to see what causes it.
I'd start with the javascript, myself.

--
Mike Brind

Jun 10 '06 #5
Hi,

I also face the same problem.

I tried with different ways but no use.

1. Set Nothing for opened objects.
2. Use Response.Flush
3. Set Response.Buffer = True.

If any one help on this, it would be grateful to you.

"Mike Brind" wrote:

PW wrote:
Heres the whole page ... TIA, PW.

<!-- #include file=aaa_Settings.asp -->

<html>
<head>
<script language="JavaScript" src="scripts\datetimepicker.js"></script>
</head>


You need to start tasking things out one by one to see what causes it.
I'd start with the javascript, myself.

--
Mike Brind

Jun 23 '06 #6
And you leave us with the same problem. No code to look at to even
begin to be able to help you....

--
Mike Brind

Mohammed Igbal wrote:
Hi,

I also face the same problem.

I tried with different ways but no use.

1. Set Nothing for opened objects.
2. Use Response.Flush
3. Set Response.Buffer = True.

If any one help on this, it would be grateful to you.

"Mike Brind" wrote:

PW wrote:
Heres the whole page ... TIA, PW.

<!-- #include file=aaa_Settings.asp -->

<html>
<head>
<script language="JavaScript" src="scripts\datetimepicker.js"></script>
</head>


You need to start tasking things out one by one to see what causes it.
I'd start with the javascript, myself.

--
Mike Brind


Jun 23 '06 #7

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

Similar topics

3
by: SpamProof | last post by:
I got an animated gif that is a barber pole spinning that I want to use as a progress bar. The problem is that is stops spinning (shows 1 frame) when my browser is processing a submited request...
7
by: Pepi Tonas | last post by:
I have a form that takes some time to load because it has to populate some Data. I was trying to display a form on top of it with an activity bar so that user can see that something's going on. ...
1
by: scorpion53061 | last post by:
this code came from cor and I think Armin authored it. I am trying to download an access database and track its progress. It is reading the size fo the file but I am unsure of how to get the...
8
by: Brian Henry | last post by:
I created a smooth progress bar with this code.. but if you update the values in a row quickly of it and watch it on screen it flickers... how would i change this to reduce the flickering?...
8
by: WhiteWizard | last post by:
I guess it's my turn to ASK a question ;) Briefly my problem: I am developing a Windows app that has several User Controls. On one of these controls, I am copying/processing some rather large...
1
by: daniel_xi | last post by:
Hi all, I am running a VS 2003 .NET project on my client machine (Win 2000 SP4, ..NET framework 1.1), running an ASP.NET application on a remote web server (Win 2000 Server, IIS 6.0, .NET...
15
by: eladla | last post by:
Hi! I am creating a composite control the does some of it`s own data access. I want to display a progress bar between the time the page is loaded and the control place holder is displayed and...
5
by: Aggelos | last post by:
Hello I am doing sevreral scripts like sending a newsletter that might take a while to finish first to prevent the browser from timing out and to keep the user informed of the process progress I...
1
by: Bob | last post by:
Hi, I am having trouble seeing how this bolts together. The UI starts a process which involves a long running database update. All Database activity is handled by a class called DT. DT has a...
0
by: jags_32 | last post by:
Hello We use MFG-PRO as our ERP system which in turn uses Progress databases. In the old version of SQL 2000, using DTS packages, we used to set the code page via command prompts and execute DTS...
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
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
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,...
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.