View Single Post
Old Feb 2nd, 2005, 10:35 AM   #2
see07
Programmer
 
Join Date: Oct 2004
Posts: 37
Rep Power: 0 see07 is on a distinguished road
Hello:
At last I found the way to do it, I share it, and it may be useful for you:
The web user control to show is inside a panel, visibility of panel can change as I do trough JavaScript functions.

function esconde()
{
document.getElementById('Panel1').style.visibility = "hidden";
}
function muestraX()
{
document.getElementById('Panel1').style.visibility = "visible";
}

I hope this be useful.

A.L.
__________________
<span style='color:red'>El Hombre que tiene Amigos, debe mostrarse Amigo...</span>
see07 is offline   Reply With Quote