Hi Experts.
I Have a web application. i want to when i click on a Button the application call special function and repeat calling it in time period like schedualing .
but i want to the application do the schedual even if i Close the application (My web page).
For Example i Want to When i click on auto button this method run evry 10 minute...EVEN I CLOSE MY WEB PAGE....
protected void AutoButton_Click(object sender, EventArgs e)
{//I want to application run above methods evry 10 minute EVEN IF I CLOSE THE PAGE
GetGoldPrices();
SaveGoldPrices();
GetCoinPrices();
SaveCoinPrices();
GetExchangePrices();
SaveExchangePrices();
}
Go to the complete details ...