ho sei bottoni e voglio fare in modo che quando se ne prema uno a fianco esca ad esempio una tabella, un form...
come posso fare?
ho sei bottoni e voglio fare in modo che quando se ne prema uno a fianco esca ad esempio una tabella, un form...
come posso fare?
codice:<%@LANGUAGE="VBSCRIPT"%> <html> <head> <title>Pagina</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <table> <tr> <td valign="top"> Mostra la form Mostra la foto </td> <td valign="top"> <% show = request.queryString("show") if show = "form" then %> <form name="myForm" method="post" action="pagina.asp"> <input type="text" name="nome"> <input type="submit" value="VAI"> </form> <% elseIf show = "foto" then %> [img]foto.jpg[/img] <% end if %> </td> </tr> </table> </body> </html>