Click here to Skip to main content
15,892,480 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
How to add and what is the code of push notification message using asp.net

i want to use it in my webpage

What I have tried:

How to add and what is the code of push notification message using asp.net

i want to use it in my webpage.
Posted
Updated 16-May-17 23:26pm
v2

1 solution

In ASP.NET, you can easily use SignalR and provide a push messaging service to your clients who are using a web app version, not the mobile or desktop version. The SignalR would provide a very easy way to enable push messaging, such as the chat notifications or messages whenever there is a new message on the server hub. SignalR uses hub and clients, to notify the people of anything new in the system, and thus it pushes that update to the clients.

For SignalR please read the following,
SignalR | The ASP.NET Site[^]

There are a few other ways to implement this in the mobile or client devices, they require some sort of service such as Azure Notification Hub, to be running and that sends the notifications to your client devices. Please read my following answers for that,
Real Time Web functionlity[^]
How to implement push notifications[^]
 
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