Hi.
I just put it right in the code before the <asp:content id.....
and the page failed it came up blank. I found nothing in my site log, but the page didn't work.
Where exactly in this code should I put it.
Here is the code I am inserting::
HTML Code:
<script type="text/javascript">
document.write(unescape("%3Cscript src='" + (location.protocol=="https:" ? "https://" : "http://") + "cn.clickable.net/js/cct.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
document.cookie=cct.CookieCheck(document.cookie);
cct.conversion_value = 'ReplaceWithServerVariable';
cct.cct_log('xxxxxxxxxxxxxxx');
</script>
Should it look like this?
HTML Code:
<%@ Page language="c#" Inherits="AspDotNetStorefront.orderconfirmation" CodeFile="orderconfirmation.aspx.cs" MasterPageFile="~/App_Templates/Skin_1/template.master" %>
<asp:Content ID="Content1" runat="server" ContentPlaceHolderID="PageContent">
<script type="text/javascript">
document.write(unescape("%3Cscript src='" + (location.protocol=="https:" ? "https://" : "http://") + "cn.clickable.net/js/cct.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
document.cookie=cct.CookieCheck(document.cookie);
cct.conversion_value = 'ReplaceWithServerVariable';
cct.cct_log('xxxxxxxxxxxxxxx');
</script>
<asp:Panel ID="pnlContent" runat="server" >
<asp:Literal ID="litOutput" runat="server"></asp:Literal>
</asp:Panel>
</asp:Content>