I am still having trouble with
one area though. I'm used to having one area that controls the flow
of a given application. It analyzes the application's current state
and then moves the application in the direction it needs to go. In
ASP 3.0 I did it by using a Case statement. Example:
Select Case Request.From("action")
Case ""
Call PerformMainAction()
Case "SaveData"
Cacll SaveData(Request.Form("data"), DBConn)
End Select
Do I just need to shift my way of thinking from a centralized point
of control to a distributed point of control?