Check this URL parameters out peoples

2002-10-29 Thread Kodjo Ackah
cfset Parameters =
Emailaddress=#URLEncodedFormat(EmailAddress)#PopServer=#URLEncodedForm
at(PopServer)#SMTPServer=#URLEncodedFormat(SMTPServer)#username=#URLEn
codedFormat(username)#Password=#URLEncodedFormat(Encrypt(Password,815))
#


Should it be like this preceding application. With the servers(pop 
smtp)

cfset Parameters =
Emailaddress=#URLEncodedFormat(EmailAddress)#application.PopServer=#UR
LEncodedFormat(application.PopServer)#application.SMTPServer=#URLEncode
dFormat(application.SMTPServer)#username=#URLEncodedFormat(username)#P
assword=#URLEncodedFormat(Encrypt(Password,815))#



Any help with the right way?

Kodjo ackah
Principal Consultant
concrete-media.com

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Check this URL parameters out peoples

2002-10-29 Thread Robert Everland
You only need application. Preceeding if you want to use application
variables. You don't have to use application variables, you will also be
opening a can of worms with locking and such.

Robert Everland III
Web Developer Extraordinaire
Dixon Ticonderoga Company
http://www.dixonusa.com 

-Original Message-
From: Kodjo Ackah [mailto:kodjo;concrete-media.com] 
Sent: Tuesday, October 29, 2002 9:57 AM
To: CF-Talk
Subject: Check this URL parameters out peoples


cfset Parameters =
Emailaddress=#URLEncodedFormat(EmailAddress)#PopServer=#URLEncodedForm
at(PopServer)#SMTPServer=#URLEncodedFormat(SMTPServer)#username=#URLEn
codedFormat(username)#Password=#URLEncodedFormat(Encrypt(Password,815))
#


Should it be like this preceding application. With the servers(pop 
smtp)

cfset Parameters =
Emailaddress=#URLEncodedFormat(EmailAddress)#application.PopServer=#UR
LEncodedFormat(application.PopServer)#application.SMTPServer=#URLEncode
dFormat(application.SMTPServer)#username=#URLEncodedFormat(username)#P
assword=#URLEncodedFormat(Encrypt(Password,815))#



Any help with the right way?

Kodjo ackah
Principal Consultant
concrete-media.com


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Check this URL parameters out peoples

2002-10-29 Thread Kodjo Ackah
Should I just go on and use my smtp and pop server which is:
mailhost.zen.co.uk.

Given this information how will you alter the url parameters?
Can you demonstrate this to me?

Kodjo ackah
Principal Consultant
concrete-media.com


-Original Message-
From: Robert Everland [mailto:REverland;dixonusa.com] 
Sent: 29 October 2002 15:04
To: CF-Talk
Subject: RE: Check this URL parameters out peoples


You only need application. Preceeding if you want to use application
variables. You don't have to use application variables, you will also be
opening a can of worms with locking and such.

Robert Everland III
Web Developer Extraordinaire
Dixon Ticonderoga Company
http://www.dixonusa.com 

-Original Message-
From: Kodjo Ackah [mailto:kodjo;concrete-media.com] 
Sent: Tuesday, October 29, 2002 9:57 AM
To: CF-Talk
Subject: Check this URL parameters out peoples


cfset Parameters =
Emailaddress=#URLEncodedFormat(EmailAddress)#PopServer=#URLEncodedForm
at(PopServer)#SMTPServer=#URLEncodedFormat(SMTPServer)#username=#URLEn
codedFormat(username)#Password=#URLEncodedFormat(Encrypt(Password,815))
#


Should it be like this preceding application. With the servers(pop 
smtp)

cfset Parameters =
Emailaddress=#URLEncodedFormat(EmailAddress)#application.PopServer=#UR
LEncodedFormat(application.PopServer)#application.SMTPServer=#URLEncode
dFormat(application.SMTPServer)#username=#URLEncodedFormat(username)#P
assword=#URLEncodedFormat(Encrypt(Password,815))#



Any help with the right way?

Kodjo ackah
Principal Consultant
concrete-media.com



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Check this URL parameters out peoples

2002-10-29 Thread Mosh Teitelbaum
 Should it be like this preceding application. With the servers(pop 
 smtp)

 cfset Parameters =
 Emailaddress=#URLEncodedFormat(EmailAddress)#application.PopServer=#UR
 LEncodedFormat(application.PopServer)#application.SMTPServer=#URLEncode
 dFormat(application.SMTPServer)#username=#URLEncodedFormat(username)#P
 assword=#URLEncodedFormat(Encrypt(Password,815))#

Well, first of all, you don't need to include application. as part of the
URL parameter's value.  For example, part of your URL is:

application.PopServer=#URLEncodedFormat(application.PopServer)#

This should be rewritten as:

PopServer=#URLEncodedFormat(application.PopServer)#

After that, you need to determine whether or not you should be using
APPLICATION variables or not.  If you decide to use them, then you should
probably recode this so that you can apply locks appropriately, as in:

CFLOCK SCOPE=Appplication TYPE=ReadOnly
CFSET PopServer = APPLICATION.PopServer
CFSET SMTPServer = APPLICATION.SMTPServer
/CFLOCK

cfset Parameters = Emailaddress=#URLEncodedFormat(EmailAddress)#
PopServer=#URLEncodedFormat(PopServer)#SMTPServer=#URLEncode
dFormat(SMTPServer)#username=#URLEncodedFormat(username)#P
assword=#URLEncodedFormat(Encrypt(Password,815))#

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 625-9191
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm