Category: MVC Messaging System
-
Implementations GUI details
When creating a GUI you must think to give user some good feeling about what the software can do – so I started to MVC 4 website,that have mobile support integrated. More,you must demonstrate some features right away to the user – so what’s best if not a message from system admin to the user …
-
Creating Edmx files and testing
The favorite ORM in .NET world for me it is edmx files. It gives you the database plain – and have generators for POCO (http://blogs.msdn.com/b/adonet/archive/2010/01/25/walkthrough-poco-template-for-the-entity-framework.aspx) as for EF4.1 DBContext(http://blogs.msdn.com/b/adonet/archive/2011/03/15/ef-4-1-model-amp-database-first-walkthrough.aspx). I will use this one – because of the new ! But the template is over simplistic -so I improved . I do not want you…
-
Interfaces and more
Summary: If you want common behavior,you need an interface. And from the first one is a small step to re-organizing the program. Body: When you make a component for other people,you must make the possibility for those to 1. customize your software with their software 2. provide a default implementation For the messaging component,the…
-
Simple messaging system -database configuration
Contents We will create the database tables and user to access the database from the application You will find at bottom the scripts for creating database materials to read further homework for you As an older database programmer,I have started with database configuration. The selected database engine is Sql Server 2008 R2 Express – the…
-
MVC4 and Simple messaging system
MVC4 Developer preview with mobile support just released. And,because best way to deal with is within an application,I decide to create a simple messaging system for any site that is made with MVC. Description: I begin with a registered user. What he can do: 1. Create messages ( subject + body ) to send…