how can I stop this happening to the BODY of the page but only the desired place

T

techy techno

hiii

I am actually comparing the date inserted with the current date...

if the todays date is EQUAL to the date inserted for the cheque dueDate
then there is a flashing message telling the user that the cheque
dueDAte is today...I have 2 questions with this topic :

1. Now this javascript is giving a LIGHTING effect to the whole page..I
actually want it for only message not for the whole body of the
page..this code is making each and every image / object in the page to
lighten.. I just want the text "Cheque has to be cleared today from " to
HIGHLIGHT

2. I want some kinda amendment in the ASP code of if the cheque due date
is a holiday then it should show that the next day...i.e. once the user
sees a lighting text he should check that using a checkbox and a seen
button.
IF the day goes further it should STILL show the previous dueCheques
until he clears them by checking the checkbox given

here is the code :

<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
set cn=server.CreateObject("adodb.connection")
'Set rs=Server.CreateObject("adodb.recordset")
mp=server.MapPath("salesDB.mdb")
cn.Open"provider=Microsoft.jet.oledb.4.0;Data Source="&mp

'SQLstmt="Insert into myToday (dueDate,rdate)"
'Response.Write "DONE"
'SQLstmt = SQLstmt & "VALUES ('" & get_date & "', '" & recv_date & "')"
'response.write SQLstmt
'cn.Execute SQLstmt
mysql = "Select dueDate,rdate,coName from myToday"
Set objRec = Server.CreateObject("ADODB.Recordset")
objRec.Open mysql, cn


%>
<HTML>
<HEAD>
<TITLE> FLASH REMINDER </TITLE>
</HEAD>
<% Response.Write Date %> <br>
<BODY>
<SPAN id="theText" style="WIDTH: 100%">
<% while not objRec.EOF%>
<%
cheque_due_date = objRec("dueDate")
company = objRec("coName")
today_date = FormatDateTime(Date)
recv_date = objRec("rDate")

If cheque_due_date = today_date Then
Response.Write "Cheque has to be cleared today from " & "<h4>" & company
& "</h4>" & "<br>"
End If
%>
<%objRec.MoveNext
wend%>
<SCRIPT>
var from = 5; //the animation start value
var to = 11; //the animation end value
var delay = 10; //the animation speed
var glowColor = "red"; //the first color
var glowColor2 = "white"; //the second color
var glowColor3 = "yellow"; //the third color
var glowColor4 = "lime"; //4th color
var glowColor5 = "white"; //5th color
var glowColor6 = "magenta"; //last color
//no more editing
var i = to;
var j = 0;
textPulseDown();
function textPulseUp()
{
if (!document.all)
return
if (i < to)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i +
")";
i++;
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
if (i = to)
{
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
}
function textPulseDown()
{
if (!document.all)
return
if (i > from)
{
theText.style.filter = "Glow(Color=" + glowColor2 + ", Strength=" + i +
")";
i--;
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
if (i = from)
{
theTimeout = setTimeout('textPulseUp2()',delay);
return 0;
}
}
function textPulseUp2()
{
if (!document.all)
return
if (i < to)
{
theText.style.filter = "Glow(Color=" + glowColor3 + ", Strength=" + i +
")";
i++;
theTimeout = setTimeout('textPulseUp2()',delay);
return 0;
}
if (i = to)
{
theTimeout = setTimeout('textPulseDown2()',delay);
return 0;
}
}
function textPulseDown2()
{
if (!document.all)
return
if (i > from)
{
theText.style.filter = "Glow(Color=" + glowColor4 + ", Strength=" + i +
")";
i--;
theTimeout = setTimeout('textPulseDown2()',delay);
return 0;
}
if (i = from)
{
theTimeout = setTimeout('textPulseUp3()',delay);
return 0;
}
}
function textPulseUp3()
{
if (!document.all)
return
if (i < to)
{
theText.style.filter = "Glow(Color=" + glowColor5 + ", Strength=" + i +
")";
i++;
theTimeout = setTimeout('textPulseUp3()',delay);
return 0;
}
if (i = to)
{
theTimeout = setTimeout('textPulseDown3()',delay);
return 0;
}
}
function textPulseDown3()
{
if (!document.all)
return
if (i > from)
{
theText.style.filter = "Glow(Color=" + glowColor6 + ", Strength=" + i +
")";
i--;
theTimeout = setTimeout('textPulseDown3()',delay);
return 0;
}
if (i = from)
{
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
}
//-->
</SCRIPT>
</BODY>
</HTML>
thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,013
Latest member
KatriceSwa

Latest Threads

Top