no

How to Read and Write an Object in a Textfile in C#

Long time ago I've a requirement to read sms messages from device to be written in a text file. Before I learned to serialize an object,...

How to Read and Update Your Mailbox Using Php

There are 2 ways I use 2 read email from my mailbox. Let the code explain: 1.) Usually use for gmail. /* connect to gmail */ $hostname = ...

Learn Injection of Control in a C# Console Application

Now that I'm working with C# MVC3, I learned that it's easier to setup Injection of Control because of several available plugins tha...

How to Select All the Triggers in an Mssql Table

Aside from using the SQL Designer, you can alter a bit and date column's default value. ALTER TABLE TableName ADD CONSTRAINT TableName...

How to Add a Jquery Datepicker on Jquery Dialog Box Via Load Method

Recently I've worked on a form that requires a jquery datepicker to be rendered inside jquery's dialog element. Where I encountered ...

Learn Many to Many Relationship in Entity Framework

An example of many-to-many relationship is asp's membership tables, between aspnet_Users and aspnet_Roles. Usually we declare it like t...

How to Specify Sql Cascade Actions in C#

Have you encountered this error: "Introducing FOREIGN KEY constraint 'x_y_Target' on table 'z_UsersInRoles' may caus...

How to Declare Foreign Key in Entity Framework

There are 2 ways to declare foreign key in entity framework. Assuming we have 2 entities aspnet_Users and Person, which are link via UserId ...

How to Add a Loading Screen to C# Using Jquery

With my experience from telerik, I want my entity's add and edit form to be a popup so I don't have to change screen. I'm using ...

archive