SpunkyTheMetaphysical
New Member
I am Working in ASP.NET and C#.In my Application i have a registration form in which there is a label which shows the success and failure of the registration.The text for that label is from codebehind based on the condition.Now what i need is to hide the label after sometime (say 5sec) on clicking the submit button.I have tried this using javascript but its not working properly.please let me know whats the mistake or give ur sugessions.Script:\[code\] function HideLabel() { document.getElementById('<%= lbl1.ClientID %>').style.display = "none"; } setTimeout("HideLabel();", 5000);\[/code\]