I want to ring a bell in a website if the string value = "UP". I have tried to console. beeps (), its working in local machine but not in remote as its a website. how to ring a bell in web applications.
if (status !="DN")
{
Console.Beep(5000, 1000);
}