Hi Experts
I need your help i getting my issue resolved.Here is My Issue
I want to send an string array through session and access the same string array in a different page.I am not sure how to send an array in a string and retrieve the same .Can anyone help me how to perform the declaration.I am a beginner to dotnet .Please Help me
thanks
Loading
Jaish MathewsPosted Apr 17, 2011, 3:14 AM
There is no need of expertise here. Do below straight forwrad steps
//Declare array and store it in a session
string[] names = { "One", "Two", "Three" };
Session[
//Reuse the stored session array
string
[] names = (string[])Session["Names"];"Names"] = names;karthik vPosted Apr 17, 2011, 9:06 AM
karthik vPosted Apr 17, 2011, 9:06 AM