Aleksander,
I,m sorry to disagree with Dark Man, whose advice is usually very good.
But putting login info in URLs is a bad idea, as an article in one of Allaire's tech forums explained a few months ago:
* if users save the page or bookmark it, they can evade you login procedure.
* then if they start passing the URL to their friends, you have a real problem.
* the author of the article I mentioned said his company's site put login info in URLs and it cost them money (lost revenue, I think).
You have 2 valid choices:
* keep login info in Session variables. As Dark Man says, you need to enable Session variables in your <CFAPPLICATION> tag. This is fine provided the site does not use clustered servers. Session variables are no good on clustered servers because the user might login on server A but the find himself talking to server B (e.g. if server A goes down). Server B won't know the logon info because it was in server A's memory.
* the solution for clustered servers is complicated and I suggest you read the article by Marc Funaro at
Fortunately it seems few sites use or plan to use clustered servers (but that was a few months ago - a long time on the Web). Check before committing yourself.