Member 13427032 Ответов: 1

Как добавить уведомление об окне в веб-форму?


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


Что я уже пробовал:

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


заранее спасибо за помощь

1 Ответов

Рейтинг:
10

F-ES Sitecore

Браузер работает на клиенте, так что вам, вероятно, понадобится решение на основе javascript, есть нагрузки, но один из них Notify.js[^]. Затем вы просто выводите соответствующий js, чтобы вызвать уведомление из вашей веб-формы с помощью RegisterScriptBlock или чего-то еще.

ClientScriptManager.Метод RegisterClientScriptBlock (Type, String, String, Boolean) (System.Web.UI)[^]


Member 13427032

спасибо за информацию.