Scusate mi succede una cosa stranissima; ho questo codice ( che non va, è una pagina iframe...etc.) che mi produce una normale pagina asp. Ebbene se con il tasto dx html vado a vedere il codice html mi fa vedere solo la parte in rosso e non tutto il resto!!!?????? Come è possibile???
L'unico codice html che vedo è quello in rosso.codice:<html> <head> <title>Istituto Ortopedico Galeazzi</title> </head> <body bgcolor="#003399" alink="fff000" vlink="fff000" > <% a=Request.Form ("artic") response.write(a) response.end strconn="Driver={Microsoft Access Driver (*.mdb)}; dbq="&Server.MapPath("intranet.mdb") set Conn=Server.CreateObject("ADODB.Connection") Conn.open strconn Set RS1 = Server.CreateObject("ADODB.Recordset") sql1 = "select distinct denominazione from prontuario WHERE gruppo= '" & Request.QueryString("artic") & "' " rs1.open sql1, conn %> <FORM ACTION="BOTT.ASP" name="a"> <select size="1" name="artic" > <option value="TUTTI">------TUTTI------</option> <% Do While Not rs1.EOF %> <option name="aaa" value="<%=RS1("denominazione")%>"><%=RS1("denominazione")%></option> <% RS1.Movenext LooP rs1.close set rs1 = nothing %> </select> <input type="text" name="notte"></input> <input type="submit" value="conferma" > <% conn.close set conn = nothing %> </form> </html>![]()