Pure Windows is a really hot theme. If you want a beautiful glossy Windows 7 Aero theme, try this one. It also modifies the look of the taskbar icons. If you are tired of the very large taskbar icon borders, get rid of them!
Timing hi.. i have a Imageprocessor and label message. after the user clicks the Submit button,the Timing ASP.NET 08-Dec-12 03:04 AM All Posts Bonus Unanswered New Post Login Search Articles FAQs Free Icons Hall of Fame About Us ASP.NET - Timing Asked By basil on 07-Dec-10 04:11 AM hi.. i have a Imageprocessor and label message. after the user clicks the Submit button, the Imageprocessor and label message should apperar immediately but the Link button should appear after 15 seconds.. my code protected void Page_Load(object sender, EventArgs e)
after the user clicks the Submit button, the Imageprocessor and label message should apperar immediately but the Link button should appear after 15 seconds.. thankss Sagar P replied to basil on 07-Dec-10 04:57 AM You can try this ; System.Threading.Thread.Sleep(15000); This will stop current thread for 15 secs afcter that you can visible your link button... basil replied to Sagar P on 07-Dec-10 05:01 AM if i give thread.Sleep(1000) at Submit button click the Imageprocessor and the label message and Link button will appear same time after 1000 sec.. but i need the Imageprocessor and label message immidiately appear after Submit button clicc but the Link button should appear after 15 sec.. thanks.. Sagar P replied to basil on 07-Dec-10 09:15 AM Then you can go for TIMER CONTROL like this; Add timer and make enabled = flase like this; <asp:Timer ID="tmr" Interval="5000" runat="server" ontick="tmr_Tick" Enabled="false"></asp:Timer> Then on your submit button click show Imageprocessor and the label message .... and make TMR enabled true like; tmr.Enabled = true; So once you make it enabled it will call tmr_Tick after 5 secs as we specified interval as 5000..... So in that event itself make Link button visible true and make timer enbaled false; tmr.Enabled = false; Industry-leading Data Grid Performance: An under the hood look at Infragistics Data Grid
Only registered users can add comments. [ Sign Up | Login ]