Jump to content

This topic is 7878 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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'

Posted

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

Posted

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!

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.