Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Warning

If your site always redirects user the same page(ex. welcome page) after sign up, do not use this method. Use this method instead: Welcome Page After Sign Up View

Use the following javascript code when a successful sign up event occurs:

Code Block
languagexml
linenumberstrue
<script type="text/javascript">
	function rdSignup() {
		var VL = new Visilabs();
		VL.AddParameter("OM.exVisitorID", "User ID");
		VL.AddParameter("OM.b_sgnp", "1");
		VL.Collect();
	}
	rdSignup();
</script>

...