ASP.NET: Guestbook App
Posted: 30 Dec 2012, 14:57pm - Sunday

Finally, I created a simple app in ASP.NET with my own, after reading a bunch of guides and tutorials... The app is Guestbook and written in MVC3 C#. Guestbook data is stored in SQL Server Database (mdf) and I use Entity Framework (EF) as my Object Relational Mapping (ORM). Here's the screenshot;

GuestbookApp

 If you check the codes of this Guestbook App, it demonstrate the following;
  • ASP.NET MVC3 pattern (Visual C# coding)
  • Entity Framework
  • Calling Function from View to Controller
  • Creating custom HELPER in the VIEW (Razor Helper)
  • Clean form-passed variables against XSS attacks (I guess? that's what they said :))
  • RegEx and its pattern, in this case is about email address
    Download Source code of ASP.NET MVC3 C# below: GuestbookApp.zip