SitePoint Sponsor |
|
User Tag List
Results 1 to 4 of 4
-
Nov 15, 2000, 08:19 #1
- Join Date
- Oct 2000
- Location
- Philadelphia, PA
- Posts
- 4,708
- Mentioned
- 2 Post(s)
- Tagged
- 0 Thread(s)
Is it possible to pass a hidden value through a meta-tag to another page using cold fusion?
"Does this napkin smell like chloroform?"
...now with SnapFoo!
My Blog | My Twitter | My Company | SitePoint Podcast
*** Matt Mullenweg on the SitePoint Podcast ***
-
Nov 17, 2000, 09:47 #2
- Join Date
- May 2000
- Location
- Canada
- Posts
- 533
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
not that i know, of, why not just pass it via URL ? ..and if that is not possible, use server side data storage, manage sessions, etc, now THAT is fun ... (and i'm not being sarcastic, sessions are awesome)
Regards,
Vinay Sahni
SitePoint Community Moderator
myPHPhost.com: mySQL 3.23, php4.0.3pl1, optimizer
-
Nov 20, 2000, 00:37 #3
- Join Date
- Oct 2000
- Posts
- 304
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
I'm not aware of any way to do that off a meta.
The usual way to do it is to pump it across in the url, then grab it back on the subsequent page by parsing the url.
-
Nov 20, 2000, 11:12 #4
- Join Date
- Aug 1999
- Location
- Lancaster, Ca. USA
- Posts
- 12,305
- Mentioned
- 1 Post(s)
- Tagged
- 0 Thread(s)
The easiest ways are to pass the values through sessions, query string, cookies, hidden form fields. (In order of complexity)
If you pass the information in a metatag, you have to parse the entire previous message in order to get the values out. This can add a lot of overhead to your pages, slow down processing and be inconsistant.
Bookmarks