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

Please wait ...message

Hi guys
I display one page in popup window...that fetches some data from sql and
perfom some calculation (tht approx 10 secs) and display result....
I am trying to display "Please wait ..."message while its performing
calculation...
I'm using the below code...that i have got from following link
http://aspfaq.com/show.asp?id=2498

but somehow it doesnt work and displays nothing....it display only for a
second before the actual result is displayed...

Below is my code snippet:

<%@LANGUAGE="VBSCRIPT"%>
<!-- #include file="common/constants.asp"--> 'tht containts sql
connection string
<!-- #include file="common/database.asp"--> ' contains one class to
perform to database and record set operation
<% Response.Buffer = True %>
<html>
<head>
<title>My Style - Plan Matrix</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="common/m8extranet.css" type="text/css">
</head>
<style>
..boxText {font-family:Arial; font-size:9pt; color:222222; font-weight:400;}
</style>
<body>
<script>
<!--
if (document.all)
{
document.write("<span id=wxx>Please");
document.write(" wait...</span>");
}
//-->
</script>

<% Response.Flush() %>

<%
sql = "Select * From Phoneprice Order by phprice"
set rs = database.executequery(sql)
sql = "Select * From Plancommi WHERE ptype='My Style' Order By planid"
set rs1 = database.executequery(sql)
%>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr>
<td width="10%" class="header"><div
align="right"><b>Plan</b></div></td>
<td width="9%" class="header"><b>&nbsp;Matrix</b></td>
<td width="9%" bgcolor="#CFF2FE" class="topMenubig"> <div
align="center"><strong>My
Style 16</strong></div></td>
<td width="9%" bgcolor="#AEAEFF" class="topMenubig"> <div
align="center"><strong>My
Style 20</strong></div></td>
<td width="9%" bgcolor="#FFD9D7" class="topMenubig"> <div
align="center"><strong>My
Style 30</strong></div></td>
<td width="9%" bgcolor="#DBB7FF" class="topMenubig"> <div
align="center"><strong>My
Style 40</strong></div></td>
<td width="9%" bgcolor="#FAE2AD" class="topMenubig"> <div
align="center"><strong>My
Style 50</strong></div></td>
<td width="9%" bgcolor="#FECBFD" class="topMenubig"> <div
align="center"><strong>My
Style 70</strong></div></td>
<td width="9%" bgcolor="#BBFFBB" class="topMenubig"> <div
align="center"><strong>My
Style 90</strong></div></td>
<td width="9%" bgcolor="#BFDFFF" class="topMenubig"> <div
align="center"><strong>My
Style 150</strong></div></td>
<td width="9%" bgcolor="#D3D3A9" class="topMenubig"> <div
align="center"><strong>My
Style 200</strong></div></td>
</tr>
<tr><td colspan="12">&nbsp;</td></tr>
<%
while not rs.eof
Response.write "<tr>"
Response.write "<td height=24 bgcolor=#DFDFDF align=center
class=boxText>"&rs("phname")&"</td>"
Response.write "<td bgcolor=#DFDFDF align=center
class=boxText>"&rs("phmodel")&"</td>"
'Response.write "<td bgcolor=#DFDFDF align=center
class=boxText>"&FormatCurrency(rs("phprice"),2)&"</td>"
rs1.movefirst
cnt=1
while not rs1.eof
mystr = "tx_mar"&cnt
tmpSql = "Select * From IMEIBonus WHERE Phid="&rs("phid")&" AND
PlanId="&rs1("planid")
'Response.write tmpSql
'response.End()
set rs_imei = database.executequery(tmpSql)
If Not rs_imei.eof then
IMEIBonus = rs_imei("Bonus")
else
IMEIBonus = 0
End If
myno = (rs1("commission") + IMEIBonus) -
(rs("phprice")+Request.form(cstr(mystr)))
If myno >= 0 Then
Response.write "<td align=center bgcolor=#"&rs1("bgcol")&"
class=boxText>Free</td>"
Else
myno = Abs(myno)
Response.write "<td align=center bgcolor=#"&rs1("bgcol")&"
class=boxText>"&FormatCurrency(myno,0)&"</td>"
End If
set rs_imei = Nothing
rs1.movenext
cnt = cnt + 1
wend
rs.movenext
wend
%>
</table></td>
</tr>
</table>
<%
set rs= Nothing
set rs1 = Nothing
%>
<script>
<!--
if (document.all)
{
document.all("wxx").style.display = 'none';
}
//-->
</script>
</body>
</html>

can any one help me??
Thanx in advance
dave
Jul 22 '05 #1
4 2560
(a) move the response.buffer line to BEFORE the <!--#include references.

(b) STOP NESTING RECORDSETS! STOP USING SELECT *! Use <th> instead of
<td..><strong> to reduce the weight of your HTML! Ugh, you will probably
eliminate the need for a please wait message if you spend some time making
this page more efficient. Please, please, please read
http://www.aspfaq.com/2424


On 3/1/05 10:13 PM, in article #v**************@tk2msftngp13.phx.gbl, "dave"
<fo****@foo.netREMOVE> wrote:
Hi guys
I display one page in popup window...that fetches some data from sql and
perfom some calculation (tht approx 10 secs) and display result....
I am trying to display "Please wait ..."message while its performing
calculation...
I'm using the below code...that i have got from following link
http://aspfaq.com/show.asp?id=2498

but somehow it doesnt work and displays nothing....it display only for a
second before the actual result is displayed...

Below is my code snippet:

<%@LANGUAGE="VBSCRIPT"%>
<!-- #include file="common/constants.asp"--> 'tht containts sql
connection string
<!-- #include file="common/database.asp"--> ' contains one class to
perform to database and record set operation
<% Response.Buffer = True %>
<html>
<head>
<title>My Style - Plan Matrix</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="common/m8extranet.css" type="text/css">
</head>
<style>
.boxText {font-family:Arial; font-size:9pt; color:222222; font-weight:400;}

</style>
<body>
<script>
<!--
if (document.all)
{
document.write("<span id=wxx>Please");
document.write(" wait...</span>");
}
//-->
</script>

<% Response.Flush() %>

<%
sql = "Select * From Phoneprice Order by phprice"
set rs = database.executequery(sql)
sql = "Select * From Plancommi WHERE ptype='My Style' Order By planid"
set rs1 = database.executequery(sql)
%>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr>
<td width="10%" class="header"><div
align="right"><b>Plan</b></div></td>
<td width="9%" class="header"><b>&nbsp;Matrix</b></td>
<td width="9%" bgcolor="#CFF2FE" class="topMenubig"> <div
align="center"><strong>My
Style 16</strong></div></td>
<td width="9%" bgcolor="#AEAEFF" class="topMenubig"> <div
align="center"><strong>My
Style 20</strong></div></td>
<td width="9%" bgcolor="#FFD9D7" class="topMenubig"> <div
align="center"><strong>My
Style 30</strong></div></td>
<td width="9%" bgcolor="#DBB7FF" class="topMenubig"> <div
align="center"><strong>My
Style 40</strong></div></td>
<td width="9%" bgcolor="#FAE2AD" class="topMenubig"> <div
align="center"><strong>My
Style 50</strong></div></td>
<td width="9%" bgcolor="#FECBFD" class="topMenubig"> <div
align="center"><strong>My
Style 70</strong></div></td>
<td width="9%" bgcolor="#BBFFBB" class="topMenubig"> <div
align="center"><strong>My
Style 90</strong></div></td>
<td width="9%" bgcolor="#BFDFFF" class="topMenubig"> <div
align="center"><strong>My
Style 150</strong></div></td>
<td width="9%" bgcolor="#D3D3A9" class="topMenubig"> <div
align="center"><strong>My
Style 200</strong></div></td>
</tr>
<tr><td colspan="12">&nbsp;</td></tr>
<%
while not rs.eof
Response.write "<tr>"
Response.write "<td height=24 bgcolor=#DFDFDF align=center
class=boxText>"&rs("phname")&"</td>"
Response.write "<td bgcolor=#DFDFDF align=center
class=boxText>"&rs("phmodel")&"</td>"
'Response.write "<td bgcolor=#DFDFDF align=center
class=boxText>"&FormatCurrency(rs("phprice"),2)&"</td>"
rs1.movefirst
cnt=1
while not rs1.eof
mystr = "tx_mar"&cnt
tmpSql = "Select * From IMEIBonus WHERE Phid="&rs("phid")&" AND
PlanId="&rs1("planid")
'Response.write tmpSql
'response.End()
set rs_imei = database.executequery(tmpSql)
If Not rs_imei.eof then
IMEIBonus = rs_imei("Bonus")
else
IMEIBonus = 0
End If
myno = (rs1("commission") + IMEIBonus) -
(rs("phprice")+Request.form(cstr(mystr)))
If myno >= 0 Then
Response.write "<td align=center bgcolor=#"&rs1("bgcol")&"
class=boxText>Free</td>"
Else
myno = Abs(myno)
Response.write "<td align=center bgcolor=#"&rs1("bgcol")&"
class=boxText>"&FormatCurrency(myno,0)&"</td>"
End If
set rs_imei = Nothing
rs1.movenext
cnt = cnt + 1
wend
rs.movenext
wend
%>
</table></td>
</tr>
</table>
<%
set rs= Nothing
set rs1 = Nothing
%>
<script>
<!--
if (document.all)
{
document.all("wxx").style.display = 'none';
}
//-->
</script>
</body>
</html>

can any one help me??
Thanx in advance
dave


Jul 22 '05 #2
thanx for prompt reply
now it works on localhost but funny thing when i upload to web server..it
doesnt work...
couldnt figure out whts going on
dave

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:BE4AA9ED.1ACD%te*****@dnartreb.noraa...
(a) move the response.buffer line to BEFORE the <!--#include references.

(b) STOP NESTING RECORDSETS! STOP USING SELECT *! Use <th> instead of
<td..><strong> to reduce the weight of your HTML! Ugh, you will probably
eliminate the need for a please wait message if you spend some time making
this page more efficient. Please, please, please read
http://www.aspfaq.com/2424


On 3/1/05 10:13 PM, in article #v**************@tk2msftngp13.phx.gbl, "dave" <fo****@foo.netREMOVE> wrote:
Hi guys
I display one page in popup window...that fetches some data from sql and
perfom some calculation (tht approx 10 secs) and display result....
I am trying to display "Please wait ..."message while its performing
calculation...
I'm using the below code...that i have got from following link
http://aspfaq.com/show.asp?id=2498

but somehow it doesnt work and displays nothing....it display only for a
second before the actual result is displayed...

Below is my code snippet:

<%@LANGUAGE="VBSCRIPT"%>
<!-- #include file="common/constants.asp"--> 'tht containts sql
connection string
<!-- #include file="common/database.asp"--> ' contains one class to
perform to database and record set operation
<% Response.Buffer = True %>
<html>
<head>
<title>My Style - Plan Matrix</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="common/m8extranet.css" type="text/css">
</head>
<style>
.boxText {font-family:Arial; font-size:9pt; color:222222; font-weight:400;}
</style>
<body>
<script>
<!--
if (document.all)
{
document.write("<span id=wxx>Please");
document.write(" wait...</span>");
}
//-->
</script>

<% Response.Flush() %>

<%
sql = "Select * From Phoneprice Order by phprice"
set rs = database.executequery(sql)
sql = "Select * From Plancommi WHERE ptype='My Style' Order By planid"
set rs1 = database.executequery(sql)
%>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr>
<td width="10%" class="header"><div
align="right"><b>Plan</b></div></td>
<td width="9%" class="header"><b>&nbsp;Matrix</b></td>
<td width="9%" bgcolor="#CFF2FE" class="topMenubig"> <div
align="center"><strong>My
Style 16</strong></div></td>
<td width="9%" bgcolor="#AEAEFF" class="topMenubig"> <div
align="center"><strong>My
Style 20</strong></div></td>
<td width="9%" bgcolor="#FFD9D7" class="topMenubig"> <div
align="center"><strong>My
Style 30</strong></div></td>
<td width="9%" bgcolor="#DBB7FF" class="topMenubig"> <div
align="center"><strong>My
Style 40</strong></div></td>
<td width="9%" bgcolor="#FAE2AD" class="topMenubig"> <div
align="center"><strong>My
Style 50</strong></div></td>
<td width="9%" bgcolor="#FECBFD" class="topMenubig"> <div
align="center"><strong>My
Style 70</strong></div></td>
<td width="9%" bgcolor="#BBFFBB" class="topMenubig"> <div
align="center"><strong>My
Style 90</strong></div></td>
<td width="9%" bgcolor="#BFDFFF" class="topMenubig"> <div
align="center"><strong>My
Style 150</strong></div></td>
<td width="9%" bgcolor="#D3D3A9" class="topMenubig"> <div
align="center"><strong>My
Style 200</strong></div></td>
</tr>
<tr><td colspan="12">&nbsp;</td></tr>
<%
while not rs.eof
Response.write "<tr>"
Response.write "<td height=24 bgcolor=#DFDFDF align=center
class=boxText>"&rs("phname")&"</td>"
Response.write "<td bgcolor=#DFDFDF align=center
class=boxText>"&rs("phmodel")&"</td>"
'Response.write "<td bgcolor=#DFDFDF align=center
class=boxText>"&FormatCurrency(rs("phprice"),2)&"</td>"
rs1.movefirst
cnt=1
while not rs1.eof
mystr = "tx_mar"&cnt
tmpSql = "Select * From IMEIBonus WHERE Phid="&rs("phid")&" AND
PlanId="&rs1("planid")
'Response.write tmpSql
'response.End()
set rs_imei = database.executequery(tmpSql)
If Not rs_imei.eof then
IMEIBonus = rs_imei("Bonus")
else
IMEIBonus = 0
End If
myno = (rs1("commission") + IMEIBonus) -
(rs("phprice")+Request.form(cstr(mystr)))
If myno >= 0 Then
Response.write "<td align=center bgcolor=#"&rs1("bgcol")&"
class=boxText>Free</td>"
Else
myno = Abs(myno)
Response.write "<td align=center bgcolor=#"&rs1("bgcol")&"
class=boxText>"&FormatCurrency(myno,0)&"</td>"
End If
set rs_imei = Nothing
rs1.movenext
cnt = cnt + 1
wend
rs.movenext
wend
%>
</table></td>
</tr>
</table>
<%
set rs= Nothing
set rs1 = Nothing
%>
<script>
<!--
if (document.all)
{
document.all("wxx").style.display = 'none';
}
//-->
</script>
</body>
</html>

can any one help me??
Thanx in advance
dave

Jul 22 '05 #3
Could be buffering is enabled in one place and disabled in the other. Could
be that your include files are different in the two places, and the ones
where it DOESN'T work set response.buffer = false (a stretch, I know, but
possible).

Tough to tell without being able to show us both environments.
On 3/1/05 11:48 PM, in article OT*************@TK2MSFTNGP10.phx.gbl, "dave"
<fo****@foo.netREMOVE> wrote:
thanx for prompt reply
now it works on localhost but funny thing when i upload to web server..it
doesnt work...
couldnt figure out whts going on
dave

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:BE4AA9ED.1ACD%te*****@dnartreb.noraa...
(a) move the response.buffer line to BEFORE the <!--#include references.

(b) STOP NESTING RECORDSETS! STOP USING SELECT *! Use <th> instead of
<td..><strong> to reduce the weight of your HTML! Ugh, you will probably
eliminate the need for a please wait message if you spend some time making
this page more efficient. Please, please, please read
http://www.aspfaq.com/2424


On 3/1/05 10:13 PM, in article #v**************@tk2msftngp13.phx.gbl,

"dave"
<fo****@foo.netREMOVE> wrote:
Hi guys
I display one page in popup window...that fetches some data from sql and
perfom some calculation (tht approx 10 secs) and display result....
I am trying to display "Please wait ..."message while its performing
calculation...
I'm using the below code...that i have got from following link
http://aspfaq.com/show.asp?id=2498

but somehow it doesnt work and displays nothing....it display only for a
second before the actual result is displayed...

Below is my code snippet:

<%@LANGUAGE="VBSCRIPT"%>
<!-- #include file="common/constants.asp"--> 'tht containts sql
connection string
<!-- #include file="common/database.asp"--> ' contains one class to
perform to database and record set operation
<% Response.Buffer = True %>
<html>
<head>
<title>My Style - Plan Matrix</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="common/m8extranet.css" type="text/css">
</head>
<style>
.boxText {font-family:Arial; font-size:9pt; color:222222; font-weight:400;}
</style>
<body>
<script>
<!--
if (document.all)
{
document.write("<span id=wxx>Please");
document.write(" wait...</span>");
}
//-->
</script>

<% Response.Flush() %>

<%
sql = "Select * From Phoneprice Order by phprice"
set rs = database.executequery(sql)
sql = "Select * From Plancommi WHERE ptype='My Style' Order By planid"
set rs1 = database.executequery(sql)
%>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr>
<td width="10%" class="header"><div
align="right"><b>Plan</b></div></td>
<td width="9%" class="header"><b>&nbsp;Matrix</b></td>
<td width="9%" bgcolor="#CFF2FE" class="topMenubig"> <div
align="center"><strong>My
Style 16</strong></div></td>
<td width="9%" bgcolor="#AEAEFF" class="topMenubig"> <div
align="center"><strong>My
Style 20</strong></div></td>
<td width="9%" bgcolor="#FFD9D7" class="topMenubig"> <div
align="center"><strong>My
Style 30</strong></div></td>
<td width="9%" bgcolor="#DBB7FF" class="topMenubig"> <div
align="center"><strong>My
Style 40</strong></div></td>
<td width="9%" bgcolor="#FAE2AD" class="topMenubig"> <div
align="center"><strong>My
Style 50</strong></div></td>
<td width="9%" bgcolor="#FECBFD" class="topMenubig"> <div
align="center"><strong>My
Style 70</strong></div></td>
<td width="9%" bgcolor="#BBFFBB" class="topMenubig"> <div
align="center"><strong>My
Style 90</strong></div></td>
<td width="9%" bgcolor="#BFDFFF" class="topMenubig"> <div
align="center"><strong>My
Style 150</strong></div></td>
<td width="9%" bgcolor="#D3D3A9" class="topMenubig"> <div
align="center"><strong>My
Style 200</strong></div></td>
</tr>
<tr><td colspan="12">&nbsp;</td></tr>
<%
while not rs.eof
Response.write "<tr>"
Response.write "<td height=24 bgcolor=#DFDFDF align=center
class=boxText>"&rs("phname")&"</td>"
Response.write "<td bgcolor=#DFDFDF align=center
class=boxText>"&rs("phmodel")&"</td>"
'Response.write "<td bgcolor=#DFDFDF align=center
class=boxText>"&FormatCurrency(rs("phprice"),2)&"</td>"
rs1.movefirst
cnt=1
while not rs1.eof
mystr = "tx_mar"&cnt
tmpSql = "Select * From IMEIBonus WHERE Phid="&rs("phid")&" AND
PlanId="&rs1("planid")
'Response.write tmpSql
'response.End()
set rs_imei = database.executequery(tmpSql)
If Not rs_imei.eof then
IMEIBonus = rs_imei("Bonus")
else
IMEIBonus = 0
End If
myno = (rs1("commission") + IMEIBonus) -
(rs("phprice")+Request.form(cstr(mystr)))
If myno >= 0 Then
Response.write "<td align=center bgcolor=#"&rs1("bgcol")&"
class=boxText>Free</td>"
Else
myno = Abs(myno)
Response.write "<td align=center bgcolor=#"&rs1("bgcol")&"
class=boxText>"&FormatCurrency(myno,0)&"</td>"
End If
set rs_imei = Nothing
rs1.movenext
cnt = cnt + 1
wend
rs.movenext
wend
%>
</table></td>
</tr>
</table>
<%
set rs= Nothing
set rs1 = Nothing
%>
<script>
<!--
if (document.all)
{
document.all("wxx").style.display = 'none';
}
//-->
</script>
</body>
</html>

can any one help me??
Thanx in advance
dave



Jul 22 '05 #4
I copied two files which i was using in include statement just to make sure
both side same code..
also tried with response.buffer = false..but got error msg saying
buffer must be on
dave

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:BE4AB299.1ADE%te*****@dnartreb.noraa...
Could be buffering is enabled in one place and disabled in the other. Could be that your include files are different in the two places, and the ones
where it DOESN'T work set response.buffer = false (a stretch, I know, but
possible).

Tough to tell without being able to show us both environments.
On 3/1/05 11:48 PM, in article OT*************@TK2MSFTNGP10.phx.gbl, "dave" <fo****@foo.netREMOVE> wrote:
thanx for prompt reply
now it works on localhost but funny thing when i upload to web server..it doesnt work...
couldnt figure out whts going on
dave

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:BE4AA9ED.1ACD%te*****@dnartreb.noraa...
(a) move the response.buffer line to BEFORE the <!--#include references.
(b) STOP NESTING RECORDSETS! STOP USING SELECT *! Use <th> instead of
<td..><strong> to reduce the weight of your HTML! Ugh, you will probably eliminate the need for a please wait message if you spend some time making this page more efficient. Please, please, please read
http://www.aspfaq.com/2424


On 3/1/05 10:13 PM, in article #v**************@tk2msftngp13.phx.gbl,

"dave"
<fo****@foo.netREMOVE> wrote:

Hi guys
I display one page in popup window...that fetches some data from sql and perfom some calculation (tht approx 10 secs) and display result....
I am trying to display "Please wait ..."message while its performing
calculation...
I'm using the below code...that i have got from following link
http://aspfaq.com/show.asp?id=2498

but somehow it doesnt work and displays nothing....it display only for a second before the actual result is displayed...

Below is my code snippet:

<%@LANGUAGE="VBSCRIPT"%>
<!-- #include file="common/constants.asp"--> 'tht containts sql
connection string
<!-- #include file="common/database.asp"--> ' contains one class to
perform to database and record set operation
<% Response.Buffer = True %>
<html>
<head>
<title>My Style - Plan Matrix</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link rel="stylesheet" href="common/m8extranet.css" type="text/css">
</head>
<style>
.boxText {font-family:Arial; font-size:9pt; color:222222;

font-weight:400;}

</style>
<body>
<script>
<!--
if (document.all)
{
document.write("<span id=wxx>Please");
document.write(" wait...</span>");
}
//-->
</script>

<% Response.Flush() %>

<%
sql = "Select * From Phoneprice Order by phprice"
set rs = database.executequery(sql)
sql = "Select * From Plancommi WHERE ptype='My Style' Order By planid"
set rs1 = database.executequery(sql)
%>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="100%" border="0" cellspacing="1" cellpadding="0"> <tr>
<td width="10%" class="header"><div
align="right"><b>Plan</b></div></td>
<td width="9%" class="header"><b>&nbsp;Matrix</b></td>
<td width="9%" bgcolor="#CFF2FE" class="topMenubig"> <div
align="center"><strong>My
Style 16</strong></div></td>
<td width="9%" bgcolor="#AEAEFF" class="topMenubig"> <div
align="center"><strong>My
Style 20</strong></div></td>
<td width="9%" bgcolor="#FFD9D7" class="topMenubig"> <div
align="center"><strong>My
Style 30</strong></div></td>
<td width="9%" bgcolor="#DBB7FF" class="topMenubig"> <div
align="center"><strong>My
Style 40</strong></div></td>
<td width="9%" bgcolor="#FAE2AD" class="topMenubig"> <div
align="center"><strong>My
Style 50</strong></div></td>
<td width="9%" bgcolor="#FECBFD" class="topMenubig"> <div
align="center"><strong>My
Style 70</strong></div></td>
<td width="9%" bgcolor="#BBFFBB" class="topMenubig"> <div
align="center"><strong>My
Style 90</strong></div></td>
<td width="9%" bgcolor="#BFDFFF" class="topMenubig"> <div
align="center"><strong>My
Style 150</strong></div></td>
<td width="9%" bgcolor="#D3D3A9" class="topMenubig"> <div
align="center"><strong>My
Style 200</strong></div></td>
</tr>
<tr><td colspan="12">&nbsp;</td></tr>
<%
while not rs.eof
Response.write "<tr>"
Response.write "<td height=24 bgcolor=#DFDFDF align=center
class=boxText>"&rs("phname")&"</td>"
Response.write "<td bgcolor=#DFDFDF align=center
class=boxText>"&rs("phmodel")&"</td>"
'Response.write "<td bgcolor=#DFDFDF align=center
class=boxText>"&FormatCurrency(rs("phprice"),2)&"</td>"
rs1.movefirst
cnt=1
while not rs1.eof
mystr = "tx_mar"&cnt
tmpSql = "Select * From IMEIBonus WHERE Phid="&rs("phid")&" AND
PlanId="&rs1("planid")
'Response.write tmpSql
'response.End()
set rs_imei = database.executequery(tmpSql)
If Not rs_imei.eof then
IMEIBonus = rs_imei("Bonus")
else
IMEIBonus = 0
End If
myno = (rs1("commission") + IMEIBonus) -
(rs("phprice")+Request.form(cstr(mystr)))
If myno >= 0 Then
Response.write "<td align=center bgcolor=#"&rs1("bgcol")&"
class=boxText>Free</td>"
Else
myno = Abs(myno)
Response.write "<td align=center bgcolor=#"&rs1("bgcol")&"
class=boxText>"&FormatCurrency(myno,0)&"</td>"
End If
set rs_imei = Nothing
rs1.movenext
cnt = cnt + 1
wend
rs.movenext
wend
%>
</table></td>
</tr>
</table>
<%
set rs= Nothing
set rs1 = Nothing
%>
<script>
<!--
if (document.all)
{
document.all("wxx").style.display = 'none';
}
//-->
</script>
</body>
</html>

can any one help me??
Thanx in advance
dave


Jul 22 '05 #5

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

Similar topics

4
by: Jason . | last post by:
I have seen a few articles with a javascript example but it is not working for me. The server side code is processed first and then the javascript so I basically get my page loading splash screen...
3
by: Danny Masti | last post by:
Hello, I have a HIDDEN div with a "Please Wait Message". OnSubmit I show the hidden div with the "Please Wait Message". It works fine. But if I replace the "Please Wait Message" with an animated...
0
by: s_erez | last post by:
Hi, This is a realy tricky one. I have an ASP.NET application where some pages are reading data from a DB and presenting reports. In order for the user to wait while the page is reading data from...
3
by: John Dalberg | last post by:
Hi I have a form that opens a new window for the results. Because the results might take a few seconds due to server processing, I would like to display a message "please wait" in the new...
3
by: Lucas Tam | last post by:
Does anyone have easy to use sample code to build a "Please wait... processing data screen?" I'm interested in something like Expedia's search page Thanks. -- Lucas Tam...
5
by: Chris | last post by:
Hi, I was following the article http://msdn.microsoft.com/msdnmag/issues/03/12/DesignPatterns/default.aspx I got everything working until I go the the Progress bar section. Here is where I am...
4
by: Anonymous | last post by:
Hello, I am generating a pdf file via some code. It takes approx. 30 secs to create the pdf and to show it to the user. During that time, I want to show a message like "Please Wait...". Ideally...
6
by: Jeremy Chapman | last post by:
I have a button on my page which when clicked redirects to another page. on the page load of the page that I've redirected to, there is a long query. What I want to do is with dhtml, display test...
1
by: =?Utf-8?B?Sm9obiBXYWxrZXI=?= | last post by:
Hi, I have a webpage designed with asp.net 2.0. Is there a way to display a "please wait" message to the screen horizontally centered and veritcally 20px from the VISIBLE top of the page,...
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.