pound character (#) in session variables

kelangthang3

New Member
Im having an issue passing a value that contains the pound (#) sign through session variables. Does anyone know if there is a restriction with certain special characters. To be more specific, this value is inputted on an ASP form, but not saved to any database and instead just saved to a session variable and localStorage. localStorage has no issues, the session variable tends to drop this # character after passing the initial pages.Edited: In addition, my ultimate goal is to really pass this value (as needed) to an ASP variable inside a VBScript, pulling it from localStorage, ie:javascript part\[code\]var valval = localStorage.getItem("xvalue")\[/code\]VBscript part\[code\]Session("xvalue") = ?? \[/code\]This is where I'm stuck. How do I refer to that javascript variable as I'm not passing anything server side?Thanks for the help.
 
Back
Top