Passing Information Between Pages
Sunday, April 27th, 2008There are three ways that you can pass data between web pages using JavaScript and this article shows you how each of the three methods works.
- using a cookie
- using frames
- or on the end of the URL as a querystring
There are of course other ways to pass information between pages using server side processing such as posting the data between pages or using a session but these require server side processing that some web sites may not available. Noe that you can POST data using JavaScript but you need server side processing in order to read it back.
