Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Member
308 Points
154 Posts
Mar 12, 2012 08:26 PM|LINK
Cast to an object and then use GetType.
object a = (object)Session["MYS"];
a.GetType
http://msdn.microsoft.com/en-us/library/system.object.gettype.aspx
I hope this can help you
sinedyip
Member
308 Points
154 Posts
Re: How to determine datatype of session variable?
Mar 12, 2012 08:26 PM|LINK
Cast to an object and then use GetType.
http://msdn.microsoft.com/en-us/library/system.object.gettype.aspx
I hope this can help you