Ho inserito ciò:
Filsel = CInt(Request.form("codbcc.value"))
gstrsql = gstrsql & " where [Filiale]=" & Filsel
Non mi dà errore ma la variabile che esce è 0
Con tutta probabilità non cattura il valore.
La mia ignoranza è tale che non sò proprio dove andare a parare.....
La pagina che carica il valore è costruita così:
<html>
<head>
<meta name="codbcc" content="99">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Database</title>
<form name=frmgrafici method="POST" action="--WEBBOT-SELF--">
<script language="Vbscript">
option explicit
Sub cmdinvia_Click
dim nextpg
DIM I
FOR I = 0 TO DOCUMENT.FRMGRAFICI.ELEMENTS.LENGTH - 1
If DOCUMENT.frmgrafici.elementS(I).NAME = "R1" THEN
IF DOCUMENT.frmgrafici.elementS(I).CHECKED THEN
Select CASE DOCUMENT.FRMGRAFICI.ELEMENTS(I).VALUE
case "EVID"
nextpg = "/Database/Evidenze/Default.asp"
Case "CONF"
nextpg = "/Database//Conformità/Default.asp" end select
navigate (nextpg)
END IF
END IF
NEXT
end sub
</script>
<meta name="Microsoft Theme" content="miotema- 011, default">
<meta name="Microsoft Border" content="none, default">
</head><body><p align="center">
<!--webbot bot="Navigation" S-Type="banner" S-Orientation="horizontal" S-Rendering="graphics" --></p>
<p align="center">
<!--webbot bot="Navigation" S-Orientation="horizontal" S-Rendering="graphics" S-Type="parent" B-Include-Home="TRUE" B-Include-Up="FALSE" --></p>
<p align="center"><b>Selezionare il campo </b></p>
<table BORDER="0">
<td><table BORDER="0">
<tr>
<td><b>Filiale di </b></td>
<td rowspan="30"><nobr>
<select NAME="codbcc" SIZE="1">
<option VALUE="1">Campo1</option>
<option VALUE="2">campo2</option>
</select>
</nobr></td>
</tr>
</table></td>
</table><table border="0" width="100%">
<tr>
<td width="8%"></td>
<td width="92%"><input type="radio" value="EVID" checked name="R1"><font face="Arial">Evidenze</font></td>
</tr>
<tr>
<td width="8%"></td>
<td width="92%"><input type="radio" name="R1" value="CONF"><font face="Arial">Conformità</font></td>
</tr>
</table>
<p>
<input TYPE="button" Name=cmdinvia Value="Invia" Onclick=cmdinvia_Click>
<input TYPE="Reset"> </body>
</html>