If I set a Session Variable to an integer, like:
Session("one" = 1
I can display it by
Alert <%=Session("one"%>
But if I set a Session Variable to a string, like:
Session("two" = "two"
Alert <%=Session("two"%> gives me a blank (null) result. Any ideas why I cannot store a string in a Session variable? I've done this before and it has worked in other ASP pages, but can't understand why I'm having an issue.
Session("one" = 1
I can display it by
Alert <%=Session("one"%>
But if I set a Session Variable to a string, like:
Session("two" = "two"
Alert <%=Session("two"%> gives me a blank (null) result. Any ideas why I cannot store a string in a Session variable? I've done this before and it has worked in other ASP pages, but can't understand why I'm having an issue.