praticamente vorrei che le variabili T1 e OK passino al codice. Basta che inserisci un response.write.
Grazie.

<html>

<head>
<title>Testo</title>

</head>

<body>

<form method="" action="">
<table border="1" width="9%">
<tr>
<td width="6%" align="center">Testo:</td>
<td width="94%" colspan="2"><input type="text" name="T1" size="20" value="pippo"></td>
</tr>
<tr>
<td width="6%" rowspan="2" align="center">OK?</td>
<td width="3%"><input type="radio" value="si" checked name="ok"></td>
<td width="91%">Si</td>
</tr>
<tr>
<td width="3%"><input type="radio" name="ok" value="no"></td>
<td width="91%">No</td>
</tr>
<tr>
<td width="6%"><input type="submit" value="Invia" ></td>
<td width="94%" colspan="2"><input type="reset" value="Reimposta"></td>
</tr>
</table>
</form>

</body>

</html>