Application Object

You can use the Application object to share information among all session of a given mailing project.

Syntax

Application.collection

Collections
Contents Contains all of the items that have been added to the application through script commands.
Remarks

You can store values in the Application Collections. Information stored in the Application collections is available throughout the mailing session.

Example
Sub Mailing_OnStartRender
  Application("ReceiverCount") = 0
End Sub
Sub Mail_OnStartRender
  Application("ReceiverCount") = Application("ReceiverCount") + 1
End Sub
' Some content
<%
  Response.Write "Receiver # " & Application("ReceiverCount") & "<br>"
%>	
See Also

Session Object



©2001-2015 eMill. All trademarks property of their owners.