hello,
I have a session variable ("Price"
that I assign values to. I haven't been extremely careful whether I assign numbers or strings to it, but lets just suppose I might assign a string one time and a number another time. Now, when I try to write out price with <%=Session("Price"
%>, it seems to pull EITHER a string variable or a previously written number variable...like its saving two different variables named "Price". Is this possible? I thought setting Session("Price"
to something would overwrite whatever was previously in there, regardless whether the old and new variables are the same type. Am I missing something?
Cheyney
I have a session variable ("Price"
Cheyney