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…
When we create a class we get given a default blank constructor which is provided by the framework. Its equivalent to
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…
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…