Tuesday, 4 February 2014

Hiding label after displaying

 <script type="text/javascript">
               window.onload = function () {
                   var seconds = 5;
                   setTimeout(function () {
                       document.getElementById("<%=lblreg.ClientID %>").style.display = "none";
                   }, seconds * 10);
               };
</script>