|
|
|
|
|
| | |
| |
Active Server Pages ASP control controls class classes module script Scripts applet CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
|
|
Subject: |
trouble in request data from submitting |
|
From: |
Yusuf Bottie Gaos |
|
Date: |
10/6/1999 4:17:36 AM |
|
IP: |
202.155.40.133 |
I have trouble in requesting data from submitting page... I made 2 pages; tes.asp and tesrespond.asp
the tes.asp code is like this :
<%
tot = 0
do while not rs.eof
tot = tot + 1
%>
<font face="verdana" size="1">yes
<input type="radio" value="<% = rs("documentID") %>" name="<% = rs("documentID") %>">
no <input type="radio" name="<% = rs("documentID") %>" checked>
</font>
<%
rs.movenext
loop
%>
the above documentID is to be submitted and the action form is tesrespond.asp
and the trouble is in the tesrespond.asp
how can I request all the documentID
Is it possible to make a loop for it ?
like tes = request("loop") |
Follow Up - Re: trouble in request data from submitting - Tim 10/6/1999 7:56:51 AM
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|