Changes between Version 10 and Version 11 of ReferenceMaterials/EventApi

Show
Ignore:
Timestamp:
10/06/10 03:07:05 (15 years ago)
Author:
jugul4r@… (IP: 68.7.19.201)
Comment:

Updated forward documentation to have correct arguments

Legend:

Unmodified
Added
Removed
Modified
  • ReferenceMaterials/EventApi

    v10 v11  
    8484 
    8585---- 
    86 == Forward(eventhandler:string [, append:list]) == 
    87  
    88 ==== Description: ==== 
    89  
    90 Immediately redirects the request to the event handler named. All values in the viewstate are maintained across the redirect if session is enabled. 
     86== Forward(eventName:string [, append:list, preserveState:boolean, anchor:string, addToken:boolean]) == 
     87 
     88==== Description: ==== 
     89 
     90Immediately redirects the request to the event handler named. All values in the viewstate are maintained if preserveState is set to true. 
    9191 
    9292==== Returns: ==== 
     
    9696==== Arguments: ==== 
    9797 
    98 !EventHandler (Required) - The name of the event handler to redirect to 
    99  
    100 Append (Optional) - Will append the list of values passed in append to the resultant URL. 
     98!EventName (required) - The name of the event handler to redirect to 
     99 
     100Append (optional) - Will append the list of values passed in append to the resultant URL. 
     101 
     102!PreserveState (optional) - Preserves the event state across the redirect to the new event. 
     103 
     104Anchor (optional) - The anchor literal for the resultant URL. 
     105 
     106!AddToken (optional) - If true will add session tokens to the URL. 
    101107 
    102108==== Example: ====