Dynamic Hide/Unhide text without page reload
-
Can anyone explain to me how to dynamically Hide/Unhide controls without having to reload the page? I want to get the same effect as on the code project's message board, when you click on a topic, it opens the message without having to reload the page. If anyone can explain to me how this is done, it would be appreciated.. Thanks, Jon G www.Gizmocoder.com
-
Can anyone explain to me how to dynamically Hide/Unhide controls without having to reload the page? I want to get the same effect as on the code project's message board, when you click on a topic, it opens the message without having to reload the page. If anyone can explain to me how this is done, it would be appreciated.. Thanks, Jon G www.Gizmocoder.com
Hi, Use javascript+dhtml to show/hide control on the page. document.all.controlid.style.display="none" to hide a control document.all.controlid.style.display="block" to show a control Juno MCSD.NET, MCDBA, MCSE ---------------------------------------------------------- Support Team of EasyDotNet, INC. http://www.EasyDotNet.com DataForm.NET - The most powerful data entry web server control for ASP.NET
-
Hi, Use javascript+dhtml to show/hide control on the page. document.all.controlid.style.display="none" to hide a control document.all.controlid.style.display="block" to show a control Juno MCSD.NET, MCDBA, MCSE ---------------------------------------------------------- Support Team of EasyDotNet, INC. http://www.EasyDotNet.com DataForm.NET - The most powerful data entry web server control for ASP.NET
Thanks Jon G www.Gizmocoder.com