-
Notifications
You must be signed in to change notification settings - Fork 0
/
Principale.master
executable file
·115 lines (111 loc) · 4.79 KB
/
Principale.master
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Principale.master.cs" Inherits="Principale" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>UrbinoShop</title>
<link rel="stylesheet" href="generale.css" />
<asp:ContentPlaceHolder id="head" runat="server">
<meta name="description" content="Esempio di sito e-commerce in ASP.NET" />
<meta name="keywords" content="ASP.NET, e-commerce, tutorial" />
</asp:ContentPlaceHolder>
</head>
<body>
<div>
<table width="100%" border="0" class="sfondo">
<tr>
<td>
<!-- header visibile -->
<table width="100%" border="0" cellpadding="5" cellspacing="0">
<tr class="sfondo">
<td width="10%" >
<img src="immagini/logo.jpg" alt="I torricini del palazzo ducale di Urbino" />
</td>
<td valign="bottom" colspan="3">
<img src="immagini/logoTesto.gif" alt="Il logo di UrbinoShop" />
<p>ATTENZIONE: questo è solo un esempio a scopo didattico:
non è possibile ordinare nulla</p>
</td>
</tr>
<tr>
<td> </td>
<td>
<!-- menu di navigazione -->
<table>
<tr>
<td>
<a href="index.aspx" class="menu">Home</a>
</td>
<td>
<a href="utente_login.aspx" class="menu">Login</a>
</td>
<td>
<a href="utente_login.aspx?log=out" class="menu">Logout</a>
</td>
<td>
<a href="categorie_catalogo.aspx" class="menu">Categorie</a>
</td>
<td>
<a href="prodotti_ricerca.aspx" class="menu">Ricerca</a>
</td>
<td>
<a href="utente_carrello.aspx" class="menu">Carrello</a>
</td>
<td>
<a href="admin/adminLogin.aspx" class="menu">Amministra</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<hr>
</td>
</tr>
<tr>
<td>
<form id="form1" runat="server" method="POST">
<asp:ContentPlaceHolder id="Corpo" runat="server">
</asp:ContentPlaceHolder>
</form>
</td>
</tr>
<tr>
<td>
<hr>
<table border="0">
<tr>
<td>
<a href="mailto:[email protected]">Assistenza</a>
</td>
<td>
<a href="chi.html">Chi siamo</a>
</td>
<td>
<a href="mailto:[email protected]">Contattaci</a>
</td>
<td>
<a href="#">Path db (disattivato)</a>
</td>
<td width="50%">
</td>
</tr>
<tr>
<td colspan="10">
Copyright © 1995-2012 UrbinoShop Inc. Tutti i diritti riservati.
Marchi registrati e segni distintivi sono di proprietà dei rispettivi titolari.
L'uso di questo sito web implica l'accettazione dell'
<a href="accordo.html">Accordo</a>
per gli utenti di UrbinoShop
e delle
<a href="privacy.html">Regole</a>
sulla privacy.
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>
</html>