Results 1 to 2 of 2

Thread: Using window.status in ASP page

  1. #1

    Thread Starter
    Lively Member
    Join Date
    May 2000
    Location
    Canada
    Posts
    70
    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"


  2. #2
    Frenzied Member monte96's Avatar
    Join Date
    Sep 2000
    Location
    Somewhere in AZ
    Posts
    1,379
    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
    monte96_@hotmail.com
    monte96@vbgarage.com


    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
  •  



Click Here to Expand Forum to Full Width