Click to See Complete Forum and Search --> : resetting the status bar


Bill Crawley
June 18th, 2008, 04:47 AM
Hi All,

I have a form that opens a modal form on the click of a button. When the button is clicked, I place a 'Please Wait...' in the status bar and this works fine.

Within the modal form I have:

ClientScript.RegisterClientScriptBlock(Me.GetType(), "ClearStatus", "<script language='javascript'> parent.window.status = '';</script>")

to clear the message, but this seems not to do anything.

hspc
June 18th, 2008, 01:22 PM
try opener.status = ' '; instead (note the space, not empty string)