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

If I have a page that takes some amount of time to process, and
I have several objects on a page and I want to perform an operation
I have an asp page with Timer control. Timer control will trigger some method
I have a page with some very basic examples that use HTML/CSS/JavaScript. I'd like
I have a page with some user selectable options and a button that, when
I have a page with some checkboxes and a submit button. I use AJAX
I have a page with some controls, usercontrols etc. when I change a div
I have a page with some HTML in it. and I need to set
I have HTML page with some HTML element with ID=logo . I need to
How to find all files in directory? I have HTML page in some directory.

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.