I am not able to pass an array and integer from one page to other using sessions.I have done it as given below
FOR INTEGER
Session["Count"] = cnt;
int count = Session["Count"] //to recieve on 2nd form
FOR ARRAY
Session["Arr"] = arry // arry is a String Array
String [] arry = Session["Arr"];