|
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>
|