July 8, 200322 yr To start a web session I use a redirect page. Other then using frames can I have the string hidden like it is hidden when you submit a form with method 'post'
July 8, 200322 yr Hi Rivet, I use an embedded "hidden" form, example: <head> <form name="redirectMe" action="FMPro"> <FMP stuff... > </form> </head> <body onload="redirectMe.submit();"> <!-- automatic redirect --> <!-- or maunally ... --> <a href="javascript:redirectMe.submit();">Redirect</a> </body> That way you get the post method hiding your FMP stuff instead of a get method. Anyway.. an idea. Bradley
July 8, 200322 yr hide it if ur not using frames or chromed windows: ------------------------ <html> <head> <title>Set the Status Bar</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script language="JavaScript" type="text/JavaScript"> <!-- function MM_displayStatusMsg(msgStr) { //v1.0 status=msgStr; document.MM_returnValue = true; } //--> </script> </head> <body onLoad="MM_displayStatusMsg('nothing to see here MOVE ALONG!');return document.MM_returnValue"> </body> </html> ----------------------------------- adjust the onLoad to onSbmit or over the link or whatever All the best!
Create an account or sign in to comment