<% '------------- CHANGE FORM PREFERENCES HERE! --------------------------------- ' '*** SECTION 1 - DATABASE & FORM IDs *** '--- This section tells the form which Company ID and Form ID to use for posting data. '--- You will find the corresponding IDs in the Flex Form area of the database. Session("Plug_CompanyID") = 18 Session("Plug_FormID") = 790 '----------------------------------------------------------------------------------- '*** SECTION 2 - FORM DISPLAY PREFERENCES *** '--- This section controlls the display of demographic and flex form data. '--- Setting to TRUE activates this feature. Session("Plug_Demographic") = TRUE Session("Plug_FlexForm") = TRUE Session("Plug_Pass_Demographic_Input") = FALSE '--- If set to TRUE it will display both the demographic and flex forms on the same '--- page. If set to FALSE the demographic data is collected on page one and the '--- flex form data is collected on screen two. Session("Plug_Demographic_and_FlexForm_on_Same_Page") = TRUE '--- If set to TRUE the contents of the data entered will be displayed to the user '--- before final submission to the database. Session("Plug_Need_Confirmation") = FALSE '--- If set to TRUE it will display US States and/or Canadian Provinces in State field. Session("Plug_Use_US_State") = TRUE Session("Plug_Use_Canadian_State") = TRUE '--- If set to TRUE it will display these speciality fields in the demographc area of '--- the form. Session("Plug_Use_Cancel_Registration") = FALSE '--- Demographic area input Session("Plug_Use_TitleCode") = FALSE '--- Demographic area input Session("Plug_Use_FunctionCode") = FALSE '--- Demographic area input Session("Plug_Use_NumberOfEmployee") = FALSE '--- Demographic area input Session("Plug_Use_CompanyRevenue") = FALSE '--- Demographic area input Session("Plug_Use_LeadValue") = FALSE '--- Demographic area input Session("Plug_Use_LeadGrade") = FALSE '--- Demographic area input '--- If set to TRUE this will require these fields in the demographic area. '--- If set to TRUE this will require fields to be entered on the form. Session("Plug_Require_FirstName") = TRUE Session("Plug_Require_LastName") = TRUE Session("Plug_Require_Title") = FALSE Session("Plug_Require_Company") = TRUE Session("Plug_Require_Address1") = FALSE Session("Plug_Require_Address2") = FALSE Session("Plug_Require_City") = TRUE Session("Plug_Require_State") = TRUE Session("Plug_Require_Zip") = FALSE Session("Plug_Require_Country") = FALSE Session("Plug_Require_Phone") = TRUE Session("Plug_Require_AltPhone") = FALSE Session("Plug_Require_CellPhone") = FALSE Session("Plug_Require_Fax") = FALSE Session("Plug_Require_Email") = TRUE Session("Plug_Require_Website") = FALSE '--- Enter the Destination URL or Thank You page file name here. Session("Plug_Destination") = "http://www.contacttracking.com/contact/thankyou.asp" '----------------------------------------------------------------------------------- '*** SECTION 3 - LEAD ASSIGNMENT *** '--- This section controls the assignment of data as it is entered in the database. '--- There can only be one TRUE statements in this area. If this feature is not used '--- then all must be set to FALSE. '--- Displays a separate screen to allow the end user to select their '--- reseller/partner of choice. If this assignment rule is set to TRUE '--- then the other features in SECTION 3 must be set to FALSE. Session("Plug_UserChoosesAssignment") = FALSE '--- Automatically will assign leads based upon the Area Code settings inside the '--- database. Check the area code assignments in the Leads Database to find the '--- correct ID to enter here. If this assignment rule is set to TRUE then the '--- other features in SECTION 3 must be set to FALSE. Session("Plug_AreaCodeAssignment") = FALSE Session("Plug_AreaCodeLogicID") = 1 '--- Automatically will assign leads based upon the Zip Code settings inside the '--- database. Check the area code assignments in the Leads Database to find the '--- correct ID to enter here. If this assignment rule is set to TRUE then the '--- other features in SECTION 3 must be set to FALSE. Session("Plug_ZipCodeAssignment") = FALSE Session("Plug_ZipCodeLogicID") = 1 '----------------------------------------------------------------------------------- '*** SECTION 4 - AUTOMATIC UNIQUE ID GENERATION *** '--- Generates an automatic special/unique ID for each record entered via this form. '--- To enable this rule then enter TRUE in the field. Put the desired prefix in '--- the UniqueID_Prefix field. That prefix will be placed at the beginning of each ID. Session("Plug_UniqueID_Activate") = FALSE Session("Plug_UniqueID_Prefix") = "" '----------------------------------------------------------------------------------- '*** SECTION 5 - COLLECT CREDIT CARD DATA *** '--- Credit cards are collected in a separate Access Database. Enter the database DSN '--- here. To not collect credit card data leave the DSN blank. Session("Plug_CreditCard_Database_Connection") = "" Session("Plug_Event_Amount") = 2000 Session("Plug_Hotel_Amount") = 99 '----------------------------------------------------------------------------------- '*** SECTION 6 - EMAIL PROCESSING *** '--- Set the Email Host Server name or IP# here. Session("EmailRemoteHost") = "192.168.110.30" '--- EMAIL NOTIFICATION '--- This feature will send out an automatic Email Notification to notify that '--- a record has been dropped into the database. You must enter a valid TO address '--- in the Plug_EmailList field. To not use this feature then leave that field blank. '--- To list multiple addresses you must separate each address with a semicolon. Session("Plug_EmailList") = "Fionn.Downhill@contacttracking.com;sam@contacttracking.com;russell.king@leadmaster.com" '--- Enter Email subject here. Session("Notification_EmailSubject") = "ContactTracking Website Inquiry" '--- Enter the simple From name here. i.e. John Smith Session("Notification_FromName") = "ContactTracking Website" '--- Enter a valid From Email address here. Session("Notification_FromAddress") = "sales@contacttracking.com" '--- Enter your email body message here. Use & vbcrlf for a return in the email body. Session("Notification_EmailBody") = "" Session("Notification_EmailBody") = Session("Notification_EmailBody") & "A new lead has been submitted from ContactTracking.com. Please log in into the ***LeadMasterUSA database*** and view the opportunity."& vbcrlf Session("Notification_EmailBody") = Session("Notification_EmailBody") & "" & vbcrlf Session("Notification_EmailBody") = Session("Notification_EmailBody") & "Name: #FirstName# #LastName#" & vbcrlf Session("Notification_EmailBody") = Session("Notification_EmailBody") & "Company: #Company#" & vbcrlf '--- EMAIL CONFIRMATION '--- This feature is used to send an automatic confirmation back to the person that '--- enters the data. This is to notify them that the data was accepted in the database. '--- Available variables for plugging in dynamic fields are #FirstName# #LastName# #Company# '--- To activate the confirmation feature enter TRUE in the SendEmailNotifications field Session("SendEmailNotification") = TRUE '--- Enter Email subject here. Session("Confirm_EmailSubject") = "ContactTracking Auto-Response" '--- Enter the simple From Name here. i.e. John Smith Session("Confirm_FromName") = "ContactTracking" '--- Enter a valid From Email address here. Session("Confirm_FromAddress") = "sales@contacttracking.com" '--- Enter your email body message here. Use & vbcrlf for a return in the email body. Session("Confirm_EmailBody") = "" Session("Confirm_EmailBody") = Session("Confirm_EmailBody") & "Thank you for your interest in ContactTracking. A representative will contact you shortly." & vbcrlf Session("Confirm_EmailBody") = Session("Confirm_EmailBody") & " " & vbcrlf Session("Confirm_EmailBody") = Session("Confirm_EmailBody") & "Should you have any questions please contact us at sales@contacttracking.com." & vbcrlf '----------------------------------------------------------------------------------- '*** SECTION 7 - SPECIAL PROGRAMMING LOGIC *** '--- Enter the campaign ID to overide any set in the form '--- Session("CampaignID_Overide") = "" %> Online CRM Software from Contact Tracking
ContactTracking.com | A LeadMaster Company Web Based CRM Software About Us Contact Us Client Login
Try our Contact Management Software today for FREE and see what you think Great Productivity Packs for Small Business
 

Contact Us

Thank you for your interest in Contact Tracking.

Please submit the form below and and we'll contact you within 48 hours of receipt of your request. If you have any questions you can email us at sales@contacttracking.com or call (770) 641-1162.

   

8 Years Young
Web enabled sales force automation since 1998. See where we came from and where we're going.

30 Day Risk Free Trial
Not sure you need CRM software? Take our no obligation 30 day free trial and see if this package is right for you.