how create Session string array in global.asax

  • Thread starter Thread starter tony collier
  • Start date Start date
T

tony collier

Can someone please tell me how to create a session string array in
global.asax (not code behind please). Thanks
 
Can someone please tell me how to create a session string array in
global.asax (not code behind please). Thanks

don't worry, found out:


string [] names={"","","","","","",""};
Session["Book"] = names;
 
Back
Top