What is the name of your radio button (ie, show us the HTML source of your
webpage where the radio button is)?
Cheers
Ken
: hi,
: whne I used this code to delete record from MS access DB thru Radio
[quoted text clipped - 15 lines]
: *** Sent via Developersdex http://www.developersdex.com ***
: Don't just participate in USENET...get rewarded for it!
A. J. - 28 Sep 2003 14:02 GMT
Thanks for your reply
here is the code
===
<html>
<head>
<title></title>
</head>
<body>
<Form name="MyForm" method="POST" action="soon-del.asp">
<input type="radio" value="<%=rs("ID")%>" name="ID">
<input type="submit" value="Delete" name="Del" style="font-family:
Tahoma; font-size: 10pt; color:#0000FF">
</Form>
</BODY></HTML>
===
A. J.
Ken Schaefer - 29 Sep 2003 01:57 GMT
On soon-del.asp can you do the following please?
<%
For Each Item in Request.Form
Response.Write(Item & " = " & Request.Form(Item) & "<br>")
Next
%>
so we can see what is in the Request.Form collection.
Cheers
Ken
: Thanks for your reply
: here is the code
[quoted text clipped - 17 lines]
: *** Sent via Developersdex http://www.developersdex.com ***
: Don't just participate in USENET...get rewarded for it!