B
Bob L
I'm using VB script to determine how this form is filled out:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Name</title>
</head>
<body>
<font <p style='margin-left:'>Name:
<input type='text' name='UID' size='10' style='font-family: Times New Roman;
font-size:
8pt'><p style='margin-left:'>Password:
<input type='password' name='PWD' size='8' style='font-size: 8pt;
font-family: Times New Roman'>
</p>
<p style='margin-left:'>Remember this logon?
<input type ='checkbox' name='CBREM' value='OFF'>
<input type='submit' value='LOGON' name='Submit' style='font-size: 8pt;
font-family: Times New Roman'></p>
</form>
</body>
</html>
I can get the value of both UID and PWD using Session("UID") and
Session("PWD") but I can't find the status of CBREM.
I've tried both Session("CBREM") and Request.Form("CBREM") but no joy. How
can I determine if the checkbox is checked?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Name</title>
</head>
<body>
<font <p style='margin-left:'>Name:
<input type='text' name='UID' size='10' style='font-family: Times New Roman;
font-size:
8pt'><p style='margin-left:'>Password:
<input type='password' name='PWD' size='8' style='font-size: 8pt;
font-family: Times New Roman'>
</p>
<p style='margin-left:'>Remember this logon?
<input type ='checkbox' name='CBREM' value='OFF'>
<input type='submit' value='LOGON' name='Submit' style='font-size: 8pt;
font-family: Times New Roman'></p>
</form>
</body>
</html>
I can get the value of both UID and PWD using Session("UID") and
Session("PWD") but I can't find the status of CBREM.
I've tried both Session("CBREM") and Request.Form("CBREM") but no joy. How
can I determine if the checkbox is checked?