one of following two ways will made the ASP.NET_SessionId cookie not created.
1. set sessionState mode to Off in web.config
<sessionState mode="Off" />
2. missed following code in global.asax
void Session_Start(object sender, EventArgs e)
{
// Code that runs when a new session is started
}