Folks, I am trying to set up a Google Analytics goal on a "registration complete" page. The idea is to create a purchasing funnel in GA with the final step landing on that page.
However, the module in question posts back to the same page on registration complete. How do I set up a page that GA can count when there is no unique URL?
On DNN6 I was able to create a "virtual page" and put the code on the page only on a postback like this:
<% if(IsPostBack) { %>
<script type="text/javascript">var pageTracker = _gat._getTracker('UA Code');
pageTracker._trackPageview('/Calendar/RegistrationComplete');</script>
<% } %>
But this is not working on DNN7. Is there a standard way of doing this in DNN?