simple form submission problem
Can anyone tell me why the message boxes are not displaying
the values in the following:
This is the form page:
http://www.bytesizedsystems.com/aspfiles/default.asp
which has a form action of director.asp.
This is the code on the director.asp page:
<%@ Language=VBScript %>
<html>
<head>
<META name=VI60_defaultClientScript content=VBScript>
<meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</head>
<body>
<SCRIPT LANGUAGE=vbscript>
<!--
Dim radiovalue
Dim username
Dim usernumber
radiovalue = "<%Request.Form.Item("radionewcheck")%>"
username = "<%Request.Form.Item("textuserid")%>"
usernumber = "<%Request.Form.Item("textphoneno")%>"
MsgBox "Radio value is " + radiovalue
MsgBox "User Name is " + username
MsgBox "User Number is " + usernumber
-->
</SCRIPT>
</body>
</html>
Thanks in advance.

