how to store string array in session in asp.net ... - Coding Resolved you can easy do this see below example. //To store values in array. string[] ArrayName = new string[]{"Hellow","World"}; Session["SessionName"] = ArrayName;