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 4001862
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T07:57:21+00:00 2026-05-20T07:57:21+00:00

In ASP.NET C# how to make a action after 10 minutes? It must be

  • 0

In ASP.NET C# how to make a action after 10 minutes? It must be without the use of browser… Obviously an server side action…

  • 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. Editorial Team
    Editorial Team
    2026-05-20T07:57:22+00:00Added an answer on May 20, 2026 at 7:57 am

    You could set a timer in Global.asax to fire every 10 minutes:

    private static Timer m_MailUpdateTimer;
    
    protected void Application_Start(object sender, EventArgs e)
    {
        m_MailUpdateTimer = new Timer(MailUpdateTimer_Check, null, TimeSpan.Zero, TimeSpan.FromMinutes(10));
    }
    
    private static void MailUpdateTimer_Check(object state)
    {
        // Do something here.
    }
    
    protected void Application_End(object sender, EventArgs e)
    {
        if (m_MailUpdateTimer != null)
            m_MailUpdateTimer.Dispose();
    }
    

    Of course, this will only fire if the web application is active, so if there is no usage for a while and IIS unloads it from memory, then the timer will not fire.

    You may also want to consider using a Windows service or a scheduled job, which might be better suited for your needs.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does Asp.Net require ActiveX to make Ajax calls? I suspect it does because without
In asp.net mvc, should I make my parameters in my action methods string or
I am working on an ASP.NET application that make a lot of jquery and
I would like to change the page names of a ASP.NET site to make
I make a asp.net usercontrol. its name is ucTreeview. in my page it named:
How to make controls float freely on asp.net webpages? It was some setting to
I want to make a custom ASP.NET control that is a subclasse of System.Web.UI.WebControls.Calendar
I am using asp.net mvc and jquery to make ajax requests and when the
Possible Duplicate: ASP.Net:Best way to run scheduled tasks I have to make a scheduled
My asp.net application is not using formsauthentication. Instead we make a call to database,

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.