I think the code I have below might be a good combination of the various answers. It uses a web service to retrieve new notifications and jquery to pull notifications on an interval. It stores the notifications in the users session.
First things first, our simple "Message" class which represents a single message. I noticed in your question that you would have multiple types of messages so i wanted to make sure to provide a solution that covered ths. My message class has only two properties: Text and Type. Type, in my demo, is used as the background color of the message.
public class Message
{
public string Text { get; set; }
public string Type { get; set; }
}
Next is our UserMessages class which handles message saving and retrieval. It saves all messages to the users session.
public class UserMessages
{
protected static string _messageSessionID = "userMessages";
public static List<Message> GetMessages()
{
var msg = HttpContext.Current.Session[_messageSessionID];
if (msg == null)
{
return new List<Message>();
}
//clear existing messages
HttpContext.Current.Session[_messageSessionID] = null;
//return messages
return (List<Message>)msg;
}
public static void AddMessage(Message message)
{
var msg = GetMessages();
msg.Add(message);
HttpContext.Current.Session[_messageSessionID] = msg;
}
}
For my demo I decided to read the messaages using AJAX by combining an ASP.Net webservice, ScriptManager, and jquery. Here is my webservice:
--ASMX File--
<%@ WebService Language="C#" CodeBehind="~/App_Code/MessageService.cs" Class="UserNotification.MessageService" %>
--CS File--
namespace UserNotification
{
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.Web.Script.Services.ScriptService]
public class MessageService : System.Web.Services.WebService
{
public MessageService()
{
}
[WebMethod(EnableSession = true)]
public List<Message> GetMessages()
{
return UserMessages.GetMessages();
}
}
}
On my aspx page I created a scriptmanager with a reference to my service, a div placeholder for messages and a quick and dirty message adding interface:
<asp:ScriptManager runat="server">
<Services>
<asp:ServiceReference Path="~/MessageService.asmx" />
</Services>
</asp:ScriptManager>
<div>
<div id="msgArea">
</div>
<span>Add Message</span>
Text: <asp:TextBox ID="txtMessage" runat="server" />
<br />
Type: <asp:TextBox ID="txtType" runat="server" Text="yellow" />
<asp:Button ID="btnAdd" runat="server" Text="Add" onclick="btnAdd_Click" />
</div>
</form>
To support message creation I added the following method in code behind to handle the button click event:
protected void btnAdd_Click(object sender, EventArgs e)
{
UserMessages.AddMessage(new Message() {Text = txtMessage.Text, Type = txtType.Text});
}
Now for the important piece. To do the actual displaying of the messages I wrote the following block of javascript (using mostly jquery, I used v1.4.1, but you can use whichever version you wish). The timer is set on a 30 second interval. This means that it waits 30 seconds before processing the first time also. To process immediately on page load add CheckMessages(); right before the setInterval to perform an immediate check on page load. Leaving in the setInterval will allow for periodic updates to messages.
<script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
setInterval('CheckMessages();', 30000);
});
function CheckMessages() {
UserNotification.MessageService.GetMessages(function (result) {
//alert('found ' + result.length.toString() + ' messages.');
$.each(result, function (i, e) {
var dv = $('<div />')
.css('background-color', e.Type)
.css('border', '4px solid white')
.css('color', 'white')
.css('text-align', 'center')
.append('<span>' + e.Text + '</span>')
.append(
$('<button />')
.text('Close')
.click(function () { $(this).parent().remove(); }));
$('#msgArea').append(dv);
});
}, function (e) { alert(e._message); });
}
</script>
Note in the above block of code that I use e.Text, which matches the name of our property in code, and e.Type. e.Type is our specified as our background color here but would probably be used for something else in real life. Also, in real life all of those CSS attributes would be in a CSS class (probably a single CSS class for each message type). I added a "close" button, you didn't mention it but I figured people would want to be able to close the notifications.
One cool thing about this implementation is that if down the road you realize you need to store messages NOT in the session but in, say, a database, this implementation will handle it smoothly. Just modify UserMessages.GetMessages to pull from a db/other location and you are set. Additionally you could set it up to handle global messages by reading them from the cache in addition to reading user messages from the session.