Forum Moderators: phranque
Then the cookie get's pulled from the headers, when you parse the subscription information from the form data.
The cookie data is always passed, because of the way the browser software interacts with the web server.
Of course, if the browser has Cookies turned off, you get zippo, which is why many networks prefer SessionID tracking. But SessionID tracking requires dynamic serving of content.
Thats what I meant :) So you can only process the information once it is posted from the form to the processing page.
Once on the second page which receives the data posted from the form, you can then save it to a cookie etc..
Maybe I am misunderstanding the question - I wasn't clear whether chokky is already processing the email data, or whether this facility is in the process of being added
To add - you can then grab the form info using a server side language such as ASP, PHP etc. with a Request.Form("email") command (example in ASP). The action of your form would be the page that grabs the form info.
The one thing I would say about this is, that as soon as the user hits Submit they will be brought to the next page - which may not be what is desired.... That leaves Cookies and SessionID!