Hi,
I believe I already responded to you on our ticketing system. Anyway, here's a copy of my response:
This can't be done directly by wodTelnetDLX, but has to be done from your code. However, you san use JavaScript for this. You can simply implement something like this:
When implementing body tags do this:
-------------------------------------------------------------
<body onLoad= Page_Load() >
-------------------------------------------------------------
and implement Page_Load function in JavaScript:
-------------------------------------------------------------
<script>
function Page_Load()
{
var control = document.getElementById( telnetdlx );
control.style.visibility = hidden ;
}
</script>
-------------------------------------------------------------
Regards,
Damba