intelligence, from the edge of corporate direction

Farewell!

EDGEvantage is sorry to see you go. Please enter below the address you would like dropped from the EDGEvantage email list. You're welcome back any time at http://www.edgevantage.com

Unsubscription Form
Email




EDGEvantage/CONSULTING can assist with research and workshops on the issues covered in this information service, too. Let us know your requirements.

Contact us: editor@edgevantage.com


Copyright and terms

for advice & assistance
<% ' This script sends mail to AY Track ' Copyright (C) 2003 AY Software Corporation. All Rights Reserved. Dim objCDO Dim strEmail Dim strBody strEmail = "subscribeFree@edgevantage.com" strURL = "http://www.edgevantage.co.uk" if UCase(Request.ServerVariables("REQUEST_METHOD")) = "POST" then strBody = Request.Form else strBody = Request.QueryString end if strBody = strBody & "&url=" & Request.ServerVariables("SCRIPT_NAME") strBody = strBody & "&ip=" & Request.ServerVariables("REMOTE_ADDR") Set objCDO = CreateObject("CDO.Message") objCDO.From = strEmail objCDO.To = strEmail objCDO.Subject = "Subscription/Unsubscription Request" objCDO.TextBody = strBody objCDO.Send Set objCDO = Nothing Response.Redirect(strURL) %>