Click here to Skip to main content
15,895,011 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Im searching on the internet for the notification(like messenger or fb notification) for web form but the information is more on the windows form for window notification with the nugget  Tulpep.WindowNotification with the code


What I have tried:

PopupNotifier= new PopupNotifier();
popupNotifier.TitleText = "Title of popup";
popupNotifier.ContentText  = "Content text";
popupNotifier.IsRightToLeft = false;
popupNotifier.Popup();


thanks in advance for the help
Posted
Updated 15-Feb-18 6:12am
v2

1 solution

The browser runs on the client so you're probably going to need a javascript based solution, there are loads but one is Notify.js[^]. You then just output the relevant js to trigger the notification from your webform using RegisterScriptBlock or whatever.

ClientScriptManager.RegisterClientScriptBlock Method (Type, String, String, Boolean) (System.Web.UI)[^]
 
Share this answer
 
Comments
Member 13427032 15-Feb-18 13:13pm    
thanks for the information.

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