Hi there, No matter what i try i cant seem to compare the cookie value to the SessionID, ive tried:
int temp2 = Convert.ToInt32(Session.SessionID);
if (Convert.ToInt32(myCookie) != temp2)
....
int temp2 = Convert.ToInt32(Session.SessionID);
if (Convert.ToInt32(myCookie) != Session.SessionID)
....
int temp2 = (int)(Session.SessionID);
if (Convert.ToInt32(myCookie) != Session.SessionID)
....
int temp2 = Convert.ToInt32(Session.SessionID);
if (Convert.ToInt32(myCookie) != temp2)
....
int temp2 = Convert.ToInt32(Session.SessionID);
if (Convert.ToInt32(myCookie) != Session.SessionID)
....
int temp2 = (int)(Session.SessionID);
if (Convert.ToInt32(myCookie) != Session.SessionID)
....