I need help to find out what I am missing.
I have a page that the user picks three items (a date and two names.. all in different fields)
When they submit the form, I use the following code (on the next page) to assign values to transfer over to the remainding pages that need the cookie:
Response.Cookies("MatchDate") = Request.Form("txtMatchDate")
Response.Cookies("HomeTeam") = Request.Form("cboHomeTeam")
Response.Cookies("VisitingTeam") = Request.Form("cboVisitingTeam")
I test the cookie(s) and only the 'MatchDate' cookie will display.
SO, why can't I access them all? I have been testing this in different ways for a week and it appears to be hit and miss!?! I have never seen anything like it.
The only theory that I that I am ignorant. I just can't figure it out.
Signed,
Frustrated and Just About Ready to Jump (Hey, I'm already bald so I can't rip my hair out)
Thanks for your help
I have a page that the user picks three items (a date and two names.. all in different fields)
When they submit the form, I use the following code (on the next page) to assign values to transfer over to the remainding pages that need the cookie:
Response.Cookies("MatchDate") = Request.Form("txtMatchDate")
Response.Cookies("HomeTeam") = Request.Form("cboHomeTeam")
Response.Cookies("VisitingTeam") = Request.Form("cboVisitingTeam")
I test the cookie(s) and only the 'MatchDate' cookie will display.
SO, why can't I access them all? I have been testing this in different ways for a week and it appears to be hit and miss!?! I have never seen anything like it.
The only theory that I that I am ignorant. I just can't figure it out.
Signed,
Frustrated and Just About Ready to Jump (Hey, I'm already bald so I can't rip my hair out)
Thanks for your help