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...
View ArticleSimple 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...
View ArticleInterfaces 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...
View ArticleCreating 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...
View ArticleImplementations 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...
View ArticleFirst version of Messaging system
Realized the first version. When you logon on the system, the application sends you an email and you can see it. Lots of thing done – however, the testing is not complete. Logging was the difficult...
View ArticleClearer MVC
In every application there are some variables that are set by the ASP.NET application( ASP.NET_SessionId cookie ) and some that are set by the programmer( cached data in...
View ArticleMVC and auto persisting values
When you have a textbox in HTML (let’s say <input name=”FirstName” type=”text” /> ) And it binds to “FirstName” Property of a Model, and in HttpPost Action you do modify the value and return the...
View ArticleMVC , JsonResult , DateTime and TimeZone
The jsonresult of date time is serializing to the string /Date and some integer value starting with 1970 . The problem is that the browser interprets this value accordingly to the LOCAL TimeZone – and...
View ArticleMicroformats ,Outlook calendar and MVC5
I have a passion for both 3:Microformats ,Outlook calendar and MVC 4. So I decided to put together an MVC implementation – first , for calendar. Source code at...
View ArticleSame object edited by 2 users–proactively notifying users
This is a practical example about how two users that comes on the same page will be notified one about other( after an idea of Adrian Petcu) . See the picture : With the NuGet package you can install...
View ArticleMVC Export List of objects to Excel-Word-PDF-CSV-HTML-XML–Razor style
This is the second part of the demo of the Exporter in action – this time in MVC . It is a little more complicated, because you need to show to the exporter the full path where to put the generated...
View Article