Archive of 2011 October

15Oct2011
Category
Classic ASP, News
Tags

ASP Framework 0.4 Example

Configuration To start out browse to "/application/config/config.asp" and edit a few of the items. Most of these can be left at their default state. Setting up All URI's are redirected to the "default.asp" page and parsed to find the appropriate controller, method, and parameters. By default all controllers are stored in "/application/controllers/*.asp" they can be in sub directories if you w

Read More
13Oct2011
Category
Classic ASP
Tags

ASP Framework Example

By default the file "web.config" trys to catch all possible URI's. I felt the best way to lay it out is that each "controller" is a single file. So the "route" just calls the controller. No extra data can be set. This is probably the biggest down fall, which I may fix if there is enough demand on the project. To get started browse to the file "/application/config/config.asp" and open it up and

Read More
02Oct2011
Category
Classic ASP
Tags

Events in Classic ASP

I am currently writing a MVC framework in my free time which I will be posting live within the next week after some testing. However this is a sneak peak at how awesome it is going to be. Classic ASP, as you know has not had an update from Microsoft since 1998 when they moved to .NET. Unfortunately, a lot of applications are still being written in this language and plenty still need to be maintain

Read More
02Oct2011
Category
News
Tags

PHP Framework v2.0

I recently released version 2.0 of my PHP MVC Framework. This is a quick example of how to use it. Inside the configuration file (application/config/config.php) you will see a LOT of new ways to configure it. By default it tries to implement a lowerCamelCase naming convention. If the names aren't obvious, let me know and I'll try and update this section. You will notice that you have a funct

Read More