So, in vbscript I can create a cookie dictionary where I have a single cookie with a list of parameters if you will.
What is the corresponding syntax in javascript? I have a cookie I have created with vbscript and I want to add a param/value with javascript within the existing cookie dictionary/library.
Thanks,
wb
Code:
response.cookies("toplevel")("param_name")="test1"
response.cookies("toplevel")("param_name2")="another test"
What is the corresponding syntax in javascript? I have a cookie I have created with vbscript and I want to add a param/value with javascript within the existing cookie dictionary/library.
Thanks,
wb