>- see footer for list info -<
I have a simple teplate (below) that is behaving oddly.

The javascript does not run unless I put a cfabort after the closing
script tag. I thought it may be the cflocation tag so I replaced it
with a javascript location.href effort to no avail.

Any pointers?

<cfset blnLogout = false>
<cfif attributes.order_email_address eq attributes.user_email_address>
  <cfset blnLogout = true>
    <script language="JavaScript">
      input_box=confirm("Are you sure you want to change your login
details?\n\nIf you select 'OK' you will be logged out, you will then
need to login again using the new email address.\n\nYour password will
NOT change");
      if (input_box==true) {
        // email will be changed.
      } else {
         location.href="javascript:history.go(-1)";
      }
    </script>
</cfif>


   <cfstoredproc>

        <!--- SNIP SNIP SNIP --->       

        
    </cfstoredproc>
                
<cfif blnLogout>
        <cflocation addtoken="No" url="index.cfm?fuseaction=sso.logout">
</cfif>
_______________________________________________

For details on ALL mailing lists and for joining or leaving lists, go to 
http://list.cfdeveloper.co.uk/mailman/listinfo

--
CFDeveloper Sponsors:-
>- Hosting provided by www.cfmxhosting.co.uk -<
>- Forum provided by www.fusetalk.com -<
>- DHTML Menus provided by www.APYCOM.com -<
>- Lists hosted by www.Gradwell.com -<
>- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -<

Reply via email to