Date:  11/20/2009 12:27:28 PM Msg ID:  004059
From:  Ali Koumaiha Thread:  004059
Subject:  I thought I\'d share this...
I have this built into my Portal Class...

however, it can easily be added to fw_enter or some other procedure...

FUNCTION IEMessagebox(cText)

  IF EMPTY(cText)

     RETURN

  ENDIF

  TEXT TO
lcScript NOSHOW TEXTMERGE     <Script language= "javascript">

          alert('<<cText>>')

     </script>

  ENDTEXT

  Response.WRITE(lcScript)

ENDFUNC


It is very useful to display Messagebox() type in the browser.  I use it alot!

example inside your fwx script!
<%
IEMessagebox("The time is now: " + TIME() )
%>