Click here to Skip to main content
15,892,072 members
Articles / Programming Languages / C#

Server-side Google Analytics Transactions

Rate me:
Please Sign up or sign in to vote.
4.86/5 (10 votes)
21 May 2013CPOL4 min read 42.5K   1.1K   25  
Handling Google Analytics Transactions on server-side using C# intead of JavaScript on client-side.
namespace Middelpat.GoogleAnalytics
{
    public interface IGoogleEvent
    {
        string CreateParameterString();
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Junior)
Netherlands Netherlands
Student software engineer and partime .NET backend developer

Comments and Discussions