Archive

Archive for the ‘Tutorials’ Category

My Simple Permissions System

June 13th, 2009 No comments

Simple Permissions

The permission system is simple in design but allows complicted permissions to be created by layering the mixed key, role and level properties. The concept is that we have permissions that any item wanting to check just asks the permission system if the logged in user can carry out the action.  At its simplest form it is used thus: Read more…

Categories: cms, Tutorials Tags:

Classes – Constructors & Chaining

February 1st, 2009 No comments

When we create a class we get given a default blank constructor which is provided by the framework. Its equivalent to

public ClassName() {}

We can create constructors with different parameters:

public ClassName(int One)
{
    this.One = One;
}
public ClassName(int One, string Two)
{
    this.One = One;
    this.Two = Two;
}

Read more…

Categories: c#, Theory, Tutorials Tags:

Designers guide to web styling

January 27th, 2009 No comments

This is a mini article I wrote to go along with my presentation on modern development.  I’ve tried to explain to our designers how they can help us by understanding why we sometimes have difficulty converting their photoshop files into websites.


Read more…