home *** CD-ROM | disk | FTP | other *** search
/ PC Open e89 / pcopen_e89.iso / corsi / webdeveloper / lezione_1 / includemenu.asp < prev    next >
Encoding:
Text File  |  2003-08-30  |  662 b   |  38 lines

  1. <%
  2.     Dim strSezione
  3.     strSezione = request.querystring("sezione")
  4. %>
  5.  
  6.     <table width="100">
  7.         <tr>
  8.             <td><h3>Men∙</h3></td>
  9.         </tr>
  10.         <tr>
  11.             <td>
  12.             <% If strSezione = "" Then %>
  13.                 <b>Home</b>
  14.             <% Else %>
  15.                 <a href="menuasp.asp">Home</a>
  16.             <% End If%>
  17.             </td>
  18.         </tr>
  19.         <tr>
  20.             <td>
  21.             <% If strSezione = "foto" Then %>
  22.                 <b>Foto</b>
  23.             <% Else %>
  24.                 <a href="foto.asp?sezione=foto">Foto</a>
  25.             <% End If %>
  26.             </td>
  27.         </tr>
  28.         <tr>
  29.             <td>
  30.             <% If strSezione = "scrivimi" Then %>
  31.                 <b>Scrivimi</b>
  32.             <% Else %>
  33.                 <a href="scrivimi.asp?sezione=scrivimi">Scrivimi</a>
  34.             <% End If %>
  35.             </td>
  36.         </tr>
  37.     </table>
  38.