jsp

<td align="left"><input type="radio" name="checkdelete" value="${fn:escapeXml(row.milestoneid)}"></td>

<td align="left">${fn:escapeXml(row.ShortName)}</td>

<td align="left">${fn:escapeXml(row.Description)}</td>

<td align="left">${fn:escapeXml(row.Duedate)}</td>

<td align="left">${fn:escapeXml(row.Responsible)}</td>

<td align="left">${fn:escapeXml(row.Delivered)}</td>

how i send the radio button value to the next page called delete.jsp

when the submit button is pressed

please help with sample code

[634 byte] By [dilipsrma] at [2007-11-27 0:51:45]
# 1

hai

filename.html

***************

<form action="delete.jsp">

<input type="radio" name="r1" value="male">

<input type="radio" name="r1" value="female">

<input type="submit">

</form>

delete.jsp

**********

<%= "ok u r : " + request.getParameter("r1") %>

drvijayy2k2a at 2007-7-11 23:22:47 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...