Pages

Tuesday, 31 January 2012

ASP.NET(C#) code to change the unique identifier of the anonymous User

//Code that change the Unique identification of the anonymous user is like the code below..try this..

public void AnonymousIdentification_OnCreate(object sender, AnonymousIdentificationEventArgs e)
    {
        e.AnonymousID = "Bubbles" + DateTime.Now();
    }

No comments:

Post a Comment