Type your first name:  
Type your last name:  
Type your password:  


The information received from the Form object was:

Name =  <%=Request.Form("name")%>
Password =  <%=Request.Form("pass")%>
The 'name' property's count is :  <%= Request.Form("name").Count %>
<% if not isempty (Request.Form("name")) then %> First name =  <%=request.Form("name")(1)%>
Last name =  <%=request.Form("name")(2)%>
<% end if %>

<%=Request.Form%>