|
-
Oct 16th, 2000, 12:05 PM
#1
Thread Starter
Lively Member
Is there a way to update the window's status bar
within an asp page?
I would like to show the different stages of the
report in the status bar. For example, connecting,
getting records, creating report, etc.
In html it's done by typing window.status="Getting Records"
-
Oct 16th, 2000, 04:31 PM
#2
Frenzied Member
It has to be done on the client side.
Try this:
Code:
Response.Write "<SCRIPT language=Javascript>" & vbCrLf
Response.Write "self.status='Loading Report Data...'" & vbCrLf
Response.Write "</SCRIPT>" & vbCrLf
'more processing here
Response.Write "<SCRIPT language=Javascript>" & vbCrLf
Response.Write "self.status='Doing something else..." & vbCrLf
Response.Write "</SCRIPT>" & vbCrLf
'more processing here.. etc...
oOOo--oOOo
__ /\/\onte96
oOOo--oOOo
Senior Programmer/Analyst
MCP
[email protected]
[email protected]
Your results may vary.. some restrictions may apply.. pricing and participation may vary.. not available in all states.. professional driver closed course..quantities limited..
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|