Click here to Skip to main content
15,913,773 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
I want to make taskbar notification as like yahoo messenger or other messenger. When new message comes, small notification will appear on the taskbar.How I can make small taskbar notification in web application using asp.net ?
Posted

1 solution

In web application it is some what difficult task. because you rarely see a web application manipulating a windows task.

If you note, the notifications coming from gtalk and yahoo messenger are coming because you have installed an application for that.

That G-talk or Yahoo messenger software act a bridge between the web server and your windows. Normally in a web application there is web server and browser so results are returned to your browser only not to the windows.

To accomplish what you want to do, you have to create a simple exe file ie. a windows application which runs in background or something and let that application communicate with your web server and then process and give a pop up notification.

NOTE : If this thing was so easy then you would have seen facebook notifications poping up through your task bar. :)

Enjoy Coding. :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900