rivet Posted July 8, 2003 Posted July 8, 2003 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'
FMPBrad Posted July 8, 2003 Posted July 8, 2003 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
Leb i Sol Posted July 8, 2003 Posted July 8, 2003 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!
Recommended Posts
This topic is 7878 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now