Hi,
I can't get my session variable to keep adding the uniqueid's i pass it from a different page.
I am passing values from checkboxes, and submitting those to a page with the following code. I then add a few more ticks to some checkboxes, submit the form and the values from there i want to add to the session. Building up maybe hundreds of concatenated id's
Problem is they don't add the overwrite the previous id's.
Any ideas would be great. Thanks
I can't get my session variable to keep adding the uniqueid's i pass it from a different page.
I am passing values from checkboxes, and submitting those to a page with the following code. I then add a few more ticks to some checkboxes, submit the form and the values from there i want to add to the session. Building up maybe hundreds of concatenated id's
Problem is they don't add the overwrite the previous id's.
Any ideas would be great. Thanks
Code:
contactid = Request.Form("uniqueid")
contactid = contactid + Session("myRunningCount")
' Update the Session variable with the new uniqueid's
Session("myRunningCount") = contactid
response.write(Session("myRunningCount"))