i need a help, I'm creating an application in asp.net MVC3 and i want to set my custom session id which is generated
var str = Math.floor(Math.random() * (2000 - 1000 + 1)) + 1000;
document.write("Session ID::" + str);
that above code written in java script function and now i want to set that number in my session id in ASP.NET MVC3.