my goal is to implement a message system on web site ( i mean users can send message one to another). Each message has only one button which actually close the message and update the db that that specific message has been read.
Some of my main requirments are :
- page should not be reloaded after closing each messaging
- when user close read message, new message will appear (till user has no new message)
The way i though to do it is aspx (c# code behind) which will prepare message details in divs or such, jquery which will show it in popup way (or another beutifull way it can 🙂 ), and ajax which will allow me to update DB on each close button click (which message has been read).
Is there any jquery components which able to present message on screen (able to run with div inside div) and run AJAX code when closed ?
Highly interesting in code example but usefull link will apreatiated as well 🙂
You are asking for custom implementation of several technologies
You just need to create a mechanism and call few .asmx web services from your ajax. Organize your code like that. If you are fluent in ASP.NET, javascript and ajax, then you will have no problems doing this.