<%
u_input=request.querystring("u_input")
if u_input ="" then
u_input ="a,b,c,d"
end if
g_input=split(u_input,",")
num_inputted=ubound(g_input)
%>
<form>
<input type = "text" name = "u_input" value = "<%= u_input
%>">
<input type = "submit" value = "Submit">
</form>
User Input: <%= u_input %><br>
Number of Inputted Values: <%= (num_inputted + 1) %><br>
<% for counter =0 to num_inputted %>
User Inputted Value(<%= counter %>) = <%= g_input(counter) %><br>
<% next %>
|