working on my first project that really makes use of CFAPPlication, making 
use of Clientmanagement and Sessionmanagement .. which may or may not have 
something to do with my dilemma, which is that I'm handing in a couple of 
variables from a log in screen

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<form action=login.cfm method=POST>
<input type="Hidden" name="log_in_type" value="complete">
Name: <input type="Text" name="name">
<br>
Password: <input type="Text" name="password">
<br>
<input type="Submit" value="Log-In">
</form>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

but then login.cfm was acting like it wasn't getting the values for the 
variables, so I put

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
FORM.login_form - <CFIF IsDefined("FORM.log_in_type")>
<cfoutput>#FORM.log_in_type#</cfoutput>
<CFELSE>no
</cfif>

<br>

FORM.email_form - <CFIF IsDefined("FORM.name")>
<cfoutput>#FORM.name#</cfoutput>
<CFELSE>no
</cfif>

<br>

FORM.password_form - <CFIF IsDefined("FORM.password")>
<cfoutput>#FORM.password#</cfoutput>
<CFELSE>no
</cfif>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
at the top of the login.cfm (and later at the top of application.cfm) and 
sure enough it came back;

FORM.log_in_type - no
FORM.name - no
FORM.password - no

can't say I've ever run into anything like this before and I'm very 
confused with a little bit of frustration thrown in.



Jordie Fike
Tech Admin
[EMAIL PROTECTED]
http://www.outer-banks.nc.us
phone - 1.252.441.6698
fax - 1.252.480.2259

------------------------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]

Reply via email to