Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 95529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:40:21+00:00 2026-05-10T23:40:21+00:00

I have a page where when some operation goes wrong i want to start

  • 0

I have a page where when some operation goes wrong i want to start the timer, wait 30 second, stop the timer and retry the operation. Every time the timer starts I need to inform the user about it by changing some label’s text.

How can I do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T23:40:21+00:00Added an answer on May 10, 2026 at 11:40 pm

    If I understand correctly, the I think you should use a client-side (javascript) timer instead. You can not use a server-side timer for this.

    When you detect the error-condition, you update the label accordingly and display it to the user. At the same time you invoke a client-side timer which will postback after 30 seconds.

    E.g. put the following timer-code onto your page:

      <script>     function StartTimer()     {       setTimeout('DoPostBack()', 30000); // call DoPostBack in 30 seconds     }     function DoPostBack()     {       __doPostBack(); // invoke the postback     }   </script> 

    In case of the error-condition, you have to make sure that the client-side timer will be started:

    if (error.Code == tooManyClientsErrorCode) {   // add some javascript that will call StartTimer() on the client   ClientScript.RegisterClientScriptBlock(this.GetType(), 'timer', 'StartTimer();', true);   //... } 

    I hope this helps (the code is not tested, since I don’t have visual studio available right now).

    Update:

    To ‘simulate’ a button click, you have to pass to button’s client id to the __doPostBack() method, e.g:

    function DoPostBack() {   var buttonClientId = '<%= myButton.ClientID %>';   __doPostBack(buttonClientId, ''); // simulate a button click } 

    For some other possibilities, see the following question/answer:

    • ClientScriptManager.GetPostBackEventReference Method
    • Call ASP.NET function from JavaScript?
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a HTML page with which I want to do some client side
I have an asp page with Timer control. Timer control will trigger some method
I have a page with some dynamically added buttons. If you click a button
I have one aspx page with some controls. Also i have one DIV which
I have a page where I submit some data, and return to the original
I have a page in my application that refreshes some content (a list of
I'll have an ASP.net page that creates some Excel Sheets and sends them to
I have a view using a master page that contains some javascript that needs
Right now I have a JSP page that allows to sort some items, when
I have some ASP.NET page and webservice WebMethod() methods that I'd like to add

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.