I am currently working on administrator module as m new to asp.net i am out of ideas how to implement the communication system between
1 administrator and moderator
2 administrator announcements on website
3 moderator sending notification to administrator .
I want to have a common panel in admin and moderator home page to see the comments,notification and announcements in different tabs . But am clueless upon what methods to apply and how to meet the requirements . I dont want to use the e mail system .
Any suggestion will be greatly accepted .
you could rely upon a handful of database table to do this job easily.
The structure might be something like this (pardon the pseudo-language, don’t have the right tool at hand to provide full SQL syntax)
alongside with a USERS table and another one to track the recipients (N:N relationship here). a “special” user meaning “this is for everyone” might prove useful here.
i’ll gladly clarify and provide some proper code later if needed, but it’s a simple structure you should be able to LINQToSQL your way through it easily.