According to the comments, this is a vague question, and there are a number of possible solutions. It's hard to understand what you need, but I will try and understand.
One of the outstanding errors of Umbraco 6 was that the speech bubble displayed user messages, but they would be immediately overwritten by the owner of Umbraco, but now you can do it easily (thanks to my friend Ali for the source code and works for me in version 6.1.6 )
using System.Web; using System.Web.UI; using Umbraco.Core; using Umbraco.Core.Events; using Umbraco.Core.Models; using Umbraco.Core.Services; using Umbraco.Web.UI; using Umbraco.Web.UI.Pages; public class UmbracoEvents : ApplicationEventHandler { protected override void ApplicationStarting(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext) {
source share