You can use the Application object to share information among all session of a given mailing project.
Application.collection
Contents | Contains all of the items that have been added to the application through script commands. |
You can store values in the Application Collections. Information stored in the Application collections is available throughout the mailing session.
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>" %>