I hope I am posting to the right forum. This was working a few days ago, but for some strange reason its not any more. I am putting a login name and number into session variables, but when I try to get them from another asp page, there is no value in them.<br><br>On the password page, I have 2 text boxes, named txtEmpNo and txtPassword, and a submit button, linked to the Verify asp.<br><br>this code is from the verify.asp<br><FONT FACE=monospace><br>Dim InstNo<br>Dim InstPswd<br><br>InstNo = request.form ("txtEmpNo"
<br>InstPswd = request.form ("txtPassword"
<br><br>Session("IDNo"
= InstNo<br>Session("Pswd"
= InstPswd<br><br>response.write InstNo<br>response.write InstPswd<br></font><br> I print to screen to check - and nothing is printed. I don't see what the problem is here - perhaps someone else can see something I might be missing?<br><br>my link from password to verify is:<br><br><FONT FACE=monospace><a href="javascript:location.replace('VerifyInst.asp')"><input type="submit" value="Enter" name="B1"></font><br><br>I have a strange feeling that is where the problem lies - but I want this code there so user cannot go back to this page after.<br><br>I hope I am posting to the right forum. <br><br>Thanks.<br>