This is no problem.  As Geoff suggests, create an includedObject which
calls your app as a custom tag, passing in any params as attributes.

An example
(http://www.echo11media.com/go/macromedia-authorized-training/registration/index.cfm),
saved as e11RegistrationPage.cfm in includedObj folder:


<cfscript>
  if( IsDefined("URL.method") ) {
    Attributes.method = URL.method;
  }
  else if( IsDefined("Form.method") ) {
    Attributes.method = Form.method;
  } else {
    Attributes.method = "home.ShowRegistrationForm";
  }
  
  if( NOT IsDefined("Attributes.CourseType") ) {
    Attributes.CourseType = 1;
  }
</cfscript>

<cfmodule
  template="../../fb4/e11Registration2/index.cfm" 
  method="#Attributes.method#"
  CourseType = "#Attributes.CourseType#">

---
You are currently subscribed to farcry-dev as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to