View Single Post
Old 05-03-2008, 04:14   #3 (permalink)
woodss
Just another web monkey
 
woodss's Avatar
 
Join Date: Mar 2005
Location: Newcastle, UK
Posts: 215
Send a message via ICQ to woodss Send a message via MSN to woodss Send a message via Yahoo to woodss Send a message via Skype™ to woodss
Remember that sessions persist across page refreshes - if you want to test this is working properly, stick:
Code:
Session.Abandon()
before it all, and that will clear any previous runs.

Try this:
Code:
strTemp = Request.Form("KeyCode") Session("TF4") = strTemp If Not IsNull(Session("TF4")) And Session("TF4") <> "" Then 'Session TF4 has a value Session("TF5") = Session("TF4") Else 'Session TF4 had no value End If

Hope this helps but I get the impression you're trying to do something the wrong way lol
  Reply With Quote