weblion -11 Newbie Poster Banned

<input id="hiddentemp" runat="server" type="hidden" /> // Place Control in source

// Write new function in js file

function showmsg()
{

if (document.forms[0].hiddentemp.value == "1")
display();
}

// Call this function in Body in Source

<body class="" onload="showmsg()">

//write on Page load as

hiddentemp.Value = "0";

//write on Save Button

hiddentemp.Value = "1";

happygeek commented: more unclear/pointless/confused/nonsense posts as we have come to expect from you I'm afraid - if you want help you really need to ask for it in a way people can understand -3