1. This is how you can make ASP.NET Server Control visible.
document.getElementById('<%= YourServerControlID.ClientID %>').style.display = "inline";
2. This is how you can make ASP.NET Server Control invisible.
document.getElementById('<%= YourServerControlID.ClientID %>').style.display = "none";
document.getElementById('<%= YourServerControlID.ClientID %>').style.display = "inline";
2. This is how you can make ASP.NET Server Control invisible.
document.getElementById('<%= YourServerControlID.ClientID %>').style.display = "none";
No comments:
Post a Comment