Rabu, 20 November 2013

O-OM.COM | Tutorial Blog dan Inspirasi Digital

O-OM.COM | Tutorial Blog dan Inspirasi Digital

Link to Tutorial Blog dan Inspirasi Digital

Launching ZoomQueries Beta 1.0 - Professional Tool For Testing Your Responsive Web Design

Posted: 20 Nov 2013 08:29 AM PST

Mencoba hasil tampilan dari desain Responsive pada blog atau website pada beberapa perangkat berbeda rasanya sangat mustahil, coba saja bayangkan mungkin saat ini sudah ada sekitar puluhan bahkan hampir ratusan jenis perangkat Smart Phone dan Tablet dengan berbagai Merk yang berbeda. Mungkin saya juga sama seperti sobat semua yang hanya memiliki 1 sampai 3 saja perangkat ponsel pintar dalam

Rabu, 13 November 2013

ASP.Net, C#, SQL Server Information

ASP.Net, C#, SQL Server Information

Link to ASP.Net, C#, SQL, JQuery, Sharepoint

Easiest Repository Pattern Tutorial

Posted: 12 Nov 2013 09:06 PM PST

I would like to explain how to implement repository pattern before we proceed any further with our single page application discussion. What is repository pattern? Repository pattern separates the logic that retrieves the data from the database and logic that uses the data by your application.  Thus it makes your data access layer independent of your presentation layer. As shown in above

Selasa, 12 November 2013

ASP.Net, C#, SQL Server Information

ASP.Net, C#, SQL Server Information

Link to ASP.Net, C#, SQL, JQuery, Sharepoint

Understanding Flow of control for Hot Towel SPA Template

Posted: 11 Nov 2013 08:04 PM PST

Like any other application HTS is not following default route of having Global.asax as starting point.  "I believe" this is not good and there are few other things which "I believe" you won't do it for your production code which we will be going to customize in upcoming blog post. Flow of process for Hot Towel SPA template App_Start/BreezeWebApiConfig.cs/RegisterBreezePreStart() App_Start/

First Single Page App (SPA) using Hot Towel SPA Template

Posted: 11 Nov 2013 07:38 PM PST

In this post, I will be creating our first SPA application using Hot towel SPA template. If you haven't installed VS.Net 2012.2 Update, then please do it now before reading further. Step 1: Open VS.Net and start creating asp.net mvc application Step 2: There are 2 default template available for creating SPA application, choose "Hot Towel SPA" template Step 3: Ones your solution is ready

Single Page Application (SPA) - Overview

Posted: 11 Nov 2013 05:37 PM PST

For those of you haven't got chance to work on Single Page Application (SPA), I will be discussing few of my learning in series of post, including how to perform CRUD operation using both Breeze and Web Api. What is Single Page Application (SPA)? (From Asp.net Site) ASP.NET Single Page Application (SPA) helps you build applications that include significant client-side interactions using HTML 5,

Minggu, 10 November 2013

ASP.Net, C#, SQL Server Information

ASP.Net, C#, SQL Server Information

Link to ASP.Net, C#, SQL, JQuery, Sharepoint

NotMapped attribute for PetaPoco or Ignore Column while Insert/Update in Petapoco

Posted: 09 Nov 2013 10:34 AM PST

NotMapped Property for PetaPoco or Ignore Column while Insert/Update in Petapoco [NotMapped]   ==>  [ResultColumn] [NotMapped] equivalent of entity framework in Petapoco is [ResultColumn] For more information Example:  If you have contact form model where you want user to enter captcha, but you don't want this captcha to be store in db, so In order to ignore captcha column while inserting

Sabtu, 02 November 2013

ASP.Net, C#, SQL Server Information

ASP.Net, C#, SQL Server Information

Link to ASP.Net, C#, SQL, JQuery, Sharepoint

Delete all the rows from all the tables in SQL Server

Posted: 01 Nov 2013 11:58 AM PDT

If you are in situation where you just want empty database structure, without having data in it. Run following select statement which will generate set of delete statement to delete all the records for all the tables in your database. SELECT 'Delete from ' + Table_Catalog + '.' + Table_Schema + '.' + Table_Name + ';'  FROM INFORMATION_SCHEMA.TABLES WHERE Table_Type = 'BASE TABLE' ORDER by